summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/SystemTrayController.h')
-rw-r--r--Swift/Controllers/SystemTrayController.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Swift/Controllers/SystemTrayController.h b/Swift/Controllers/SystemTrayController.h
index 1c6d270..6d2aa31 100644
--- a/Swift/Controllers/SystemTrayController.h
+++ b/Swift/Controllers/SystemTrayController.h
@@ -3,11 +3,15 @@
namespace Swift {
class EventController;
class SystemTray;
+
class SystemTrayController {
public:
SystemTrayController(EventController* eventController, SystemTray* systemTray);
+
private:
void handleEventQueueLengthChange(int length);
+
+ private:
EventController* eventController_;
SystemTray* systemTray_;
};