#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); boost::shared_ptr getBookmark(); QVariant data(int role); private: boost::shared_ptr bookmark_; QList items_; }; }