diff options
Diffstat (limited to 'Swift/Controllers/UIInterfaces/EventWindow.h')
-rw-r--r-- | Swift/Controllers/UIInterfaces/EventWindow.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Swift/Controllers/UIInterfaces/EventWindow.h b/Swift/Controllers/UIInterfaces/EventWindow.h new file mode 100644 index 0000000..6cc5bbd --- /dev/null +++ b/Swift/Controllers/UIInterfaces/EventWindow.h @@ -0,0 +1,12 @@ +#pragma once + +#include "boost/shared_ptr.hpp" +#include "Swiften/Events/Event.h" + +namespace Swift { + class EventWindow { + public: + virtual void addEvent(boost::shared_ptr<Event> event, bool active) = 0; + virtual void removeEvent(boost::shared_ptr<Event> event) = 0; + }; +} |