summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-11-28 18:52:43 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-11-28 18:52:43 (GMT)
commit85dcc894ccf417ec8b057d868afb1d8006634ac4 (patch)
treeb32c7b747c91727c9caf00076c0b2468038242a7 /Swift/Controllers/SystemTrayController.h
parent27f8faea9b516f45c932c6b36a626b78d92438d4 (diff)
downloadswift-85dcc894ccf417ec8b057d868afb1d8006634ac4.zip
swift-85dcc894ccf417ec8b057d868afb1d8006634ac4.tar.bz2
Some code cleanup.
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_;
};