#pragma once #include #include #include "Swiften/MUC/MUCBookmark.h" #include "Swift/QtUI/ChatList/ChatListItem.h" namespace Swift { class ChatListMUCItem : public ChatListItem { public: ChatListMUCItem(boost::shared_ptr bookmark, ChatListGroupItem* parent) : ChatListItem(parent), bookmark_(bookmark) {}; boost::shared_ptr getBookmark() {return bookmark_;}; QVariant data(int role) {}; private: boost::shared_ptr bookmark_; QList items_; }; }