/* * Copyright (c) 2010 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include "Swift/Controllers/XMPPEvents/StanzaEvent.h" namespace Swift { class QtEvent { public: QtEvent(boost::shared_ptr event, bool active); QVariant data(int role); boost::shared_ptr getEvent() { return event_; } enum EventRoles { SenderRole = Qt::UserRole }; private: QString text(); QString sender(); boost::shared_ptr event_; bool active_; }; }