/* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include "boost/shared_ptr.hpp" #include "Swiften/Events/StanzaEvent.h" namespace Swift { class EventWindow { public: virtual ~EventWindow() {}; virtual void addEvent(boost::shared_ptr event, bool active) = 0; virtual void removeEvent(boost::shared_ptr event) = 0; }; }