diff options
Diffstat (limited to 'Swift/Controllers/DummySystemTray.h')
-rw-r--r-- | Swift/Controllers/DummySystemTray.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Swift/Controllers/DummySystemTray.h b/Swift/Controllers/DummySystemTray.h new file mode 100644 index 0000000..1683b55 --- /dev/null +++ b/Swift/Controllers/DummySystemTray.h @@ -0,0 +1,17 @@ +/* + * Copyright (c) 2010 Remko Tronçon + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include "Swift/Controllers/SystemTray.h" + +namespace Swift { + class DummySystemTray : public SystemTray { + public: + void setUnreadMessages(bool some) {}; + void setStatusType(StatusShow::Type type) {}; + }; +} |