| 1222 | } |
| 1223 | |
| 1224 | std::string |
| 1225 | InspectorUI::getClassName(void) const |
| 1226 | { |
| 1227 | if (this->config->hasPrefix("ask")) |
| 1228 | return "AM"; |
| 1229 | else if (this->config->hasPrefix("afc")) |
| 1230 | return "PM"; |
| 1231 | else if (this->config->hasPrefix("fsk")) |
| 1232 | return "FM"; |
| 1233 | |
| 1234 | return "UNKNOWN"; |
| 1235 | } |
| 1236 | |
| 1237 | unsigned int |
| 1238 | InspectorUI::getBps(void) const |
no test coverage detected