| 51 | } |
| 52 | |
| 53 | std::vector<std::string> NodeRegistry::Names() const |
| 54 | { |
| 55 | std::vector<std::string> names; |
| 56 | for (const auto& i : _detail->descriptors) |
| 57 | names.push_back(i.second.name); |
| 58 | |
| 59 | return names; |
| 60 | } |
| 61 | |
| 62 | lab::AudioNode* NodeRegistry::Create(const std::string& n, lab::AudioContext& ac) |
| 63 | { |
nothing calls this directly
no outgoing calls
no test coverage detected