| 58 | } |
| 59 | |
| 60 | MeasureHandler MeasureManager::getMeasureHandler(const char* module) |
| 61 | { |
| 62 | for (MeasureHandler handler : _mMeasureHandlers) { |
| 63 | if (!strcmp(handler.module.c_str(), module)) { |
| 64 | return handler; |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | MeasureHandler empty; |
| 69 | return empty; |
| 70 | } |
| 71 | |
| 72 | MeasureHandler MeasureManager::getMeasureHandler(const App::MeasureSelectionItem& selectionItem) |
| 73 | { |
nothing calls this directly
no test coverage detected