| 92 | } |
| 93 | |
| 94 | vector<DeviceRef> Device::getInputDevices() |
| 95 | { |
| 96 | vector<DeviceRef> result; |
| 97 | for( const auto &dev : getDevices() ) { |
| 98 | if( dev->getNumInputChannels() > 0 ) |
| 99 | result.push_back( dev ); |
| 100 | } |
| 101 | |
| 102 | return result; |
| 103 | } |
| 104 | |
| 105 | const string& Device::getName() |
| 106 | { |
nothing calls this directly
no test coverage detected