/* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #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_; }; }