OpenTwin 0.1
OpenTwin
 
Loading...
Searching...
No Matches
UiNotifier.h
Go to the documentation of this file.
1#pragma once
2
3// OpenTwin header
5
6// C++ header
7#include <string>
8
10public:
12 virtual ~UiNotifier() {}
13
16 virtual void shortcutActivated(const std::string& _keySquence) override;
17
18private:
19 UiNotifier(UiNotifier&) = delete;
20 UiNotifier& operator = (UiNotifier&) = delete;
21};
Definition UiNotifier.h:9
virtual void shortcutActivated(const std::string &_keySquence) override
Will be called when a key sequence was activated in the ui.
virtual ~UiNotifier()
Definition UiNotifier.h:12
UiNotifier()
Definition UiNotifier.h:11
Definition AbstractUiNotifier.h:11