Added Bits Of Binary (XEP-0231) support
[iris.git] / src / xmpp / xmpp-im / xmpp_liveroster.h
blob6e1625be36f2fc712b1bd6b2dbde9836fa88bb8e
1 /*
2 * Copyright (C) 2003 Justin Karneges
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #ifndef XMPP_LIVEROSTER_H
21 #define XMPP_LIVEROSTER_H
23 #include <QList>
25 #include "xmpp_liverosteritem.h"
27 namespace XMPP
29 class Jid;
31 class LiveRoster : public QList<LiveRosterItem>
33 public:
34 LiveRoster();
35 ~LiveRoster();
37 void flagAllForDelete();
38 LiveRoster::Iterator find(const Jid &, bool compareRes=true);
39 LiveRoster::ConstIterator find(const Jid &, bool compareRes=true) const;
43 #endif