MCPcopy Create free account
hub / github.com/FreeCAD/FreeCAD / getMeasureHandler

Method getMeasureHandler

src/App/MeasureManager.cpp:60–70  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

58}
59
60MeasureHandler 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
72MeasureHandler MeasureManager::getMeasureHandler(const App::MeasureSelectionItem& selectionItem)
73{

Callers

nothing calls this directly

Calls 5

c_strMethod · 0.45
getSubObjectMethod · 0.45
getLinkedObjectMethod · 0.45
getNameMethod · 0.45
getTypeIdMethod · 0.45

Tested by

no test coverage detected