OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
AbstractUiNotifier.h
Go to the documentation of this file.
1#pragma once
2
3// Foundation header
5
6// C++ header
7#include <string>
8
9namespace ot {
10
12 public:
15
18 virtual void shortcutActivated(const std::string& _keySquence) = 0;
19
20 private:
22 AbstractUiNotifier& operator = (AbstractUiNotifier&) = delete;
23 };
24
25}
#define OT_SERVICEFOUNDATION_API_EXPORT
Definition FoundationAPIExport.h:7
Definition AbstractUiNotifier.h:11
AbstractUiNotifier()
Definition AbstractUiNotifier.h:13
virtual void shortcutActivated(const std::string &_keySquence)=0
Will be called when a key sequence was activated in the ui.
virtual ~AbstractUiNotifier()
Definition AbstractUiNotifier.h:14
Definition Connector.h:8