diff options
Diffstat (limited to 'Swift/Controllers/SystemTray.h')
-rw-r--r-- | Swift/Controllers/SystemTray.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Swift/Controllers/SystemTray.h b/Swift/Controllers/SystemTray.h new file mode 100644 index 0000000..89ae614 --- /dev/null +++ b/Swift/Controllers/SystemTray.h @@ -0,0 +1,9 @@ +#pragma once + +namespace Swift { + class SystemTray { + public: + virtual ~SystemTray(){}; + virtual void setUnreadMessages(bool some) = 0; + }; +} |