| 27 | #include "ModuleException.h" |
| 28 | |
| 29 | std::unique_ptr<CInstrument> CInstrumentService::Make(inst_type_t index) const { |
| 30 | return GetInstrumentType(index).MakeInstrument(); |
| 31 | } |
| 32 | |
| 33 | std::unique_ptr<CInstrumentIO> CInstrumentService::GetInstrumentIO(inst_type_t index, module_error_level_t err_lv) const { |
| 34 | return GetInstrumentType(index).GetInstrumentIO(err_lv); |
no test coverage detected