diff options
Diffstat (limited to 'Swift/Controllers/SystemTrayController.h')
-rw-r--r-- | Swift/Controllers/SystemTrayController.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Swift/Controllers/SystemTrayController.h b/Swift/Controllers/SystemTrayController.h new file mode 100644 index 0000000..1c6d270 --- /dev/null +++ b/Swift/Controllers/SystemTrayController.h @@ -0,0 +1,14 @@ +#pragma once + +namespace Swift { + class EventController; + class SystemTray; + class SystemTrayController { + public: + SystemTrayController(EventController* eventController, SystemTray* systemTray); + private: + void handleEventQueueLengthChange(int length); + EventController* eventController_; + SystemTray* systemTray_; + }; +} |