OpenLexocad  28.0
UICallback.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Base/GlobalId.h>
4 
5 
6 #include <memory>
7 #include <vector>
8 
9 namespace OpenLxUI
10 {
17 class LX_OPENLXUI_EXPORT UICallback
18 {
19 public:
20  void setActive(bool onoff);
21  bool isActive() const;
22 
23  virtual ~UICallback() {}
24 
25 private:
26  bool _active = true;
27 };
28 } // namespace OpenLxUI
OpenLxUI::UICallback::isActive
bool isActive() const
GlobalId.h
OpenLxUI::UICallback::setActive
void setActive(bool onoff)
OpenLxUI::UICallback
Definition: UICallback.h:18
OpenLxUI::UICallback::~UICallback
virtual ~UICallback()
Definition: UICallback.h:23
OpenLxUI
Definition: ActiveEdge.h:26