| 263 | vis::EditorContext* get_editor_context() { return static_cast<vis::EditorContext*>(g_editor_context.load()); } |
| 264 | |
| 265 | void set_operator_callbacks(core::IOperatorCallbacks* callbacks) { |
| 266 | g_operator_callbacks.store(callbacks); |
| 267 | } |
| 268 | |
| 269 | void set_gui_manager(vis::gui::GuiManager* gm) { g_gui_manager.store(gm); } |
| 270 | vis::gui::GuiManager* get_gui_manager() { return g_gui_manager.load(); } |
no test coverage detected