| 952 | } |
| 953 | |
| 954 | void |
| 955 | Singleton::removeSpectrumUnit(std::string const &name) |
| 956 | { |
| 957 | if (this->spectrumUnits.find(name) != this->spectrumUnits.end()) { |
| 958 | SpectrumUnit bm = this->spectrumUnits[name]; |
| 959 | this->spectrumUnits.remove(name); |
| 960 | } |
| 961 | } |
| 962 | |
| 963 | void |
| 964 | Singleton::registerSourceDevice(const suscan_source_device_t *dev) |
no test coverage detected