| 34 | |
| 35 | public: |
| 36 | BasicRootNode() |
| 37 | { |
| 38 | _namespace = GlobalNamespaceFactory().createNamespace(); |
| 39 | _targetManager = GlobalEntityModule().createTargetManager(); |
| 40 | _selectionGroupManager = GlobalSelectionGroupModule().createSelectionGroupManager(); |
| 41 | _selectionSetManager = GlobalSelectionSetModule().createSelectionSetManager(); |
| 42 | _layerManager = GlobalLayerModule().createLayerManager(*this); |
| 43 | _undoSystem = GlobalUndoSystemFactory().createUndoSystem(); |
| 44 | } |
| 45 | |
| 46 | void setName(const std::string& name) override |
| 47 | { |
nothing calls this directly
no test coverage detected