| 69 | } |
| 70 | |
| 71 | AudioNodeDescriptor const * const NodeRegistry::Descriptor(const std::string & n) const |
| 72 | { |
| 73 | auto i = _detail->descriptors.find(n); |
| 74 | if (i == _detail->descriptors.end()) |
| 75 | return nullptr; |
| 76 | |
| 77 | return i->second.desc; |
| 78 | } |
| 79 | |
| 80 | |
| 81 |
nothing calls this directly
no outgoing calls
no test coverage detected