| 10 | struct AudioParamDescriptor; |
| 11 | struct AudioSettingDescriptor; |
| 12 | struct AudioNodeDescriptor |
| 13 | { |
| 14 | AudioParamDescriptor * params; |
| 15 | AudioSettingDescriptor * settings; |
| 16 | |
| 17 | AudioParamDescriptor const * const param(char const * const) const; |
| 18 | AudioSettingDescriptor const * const setting(char const * const) const; |
| 19 | }; |
| 20 | |
| 21 | } // namespace |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected