~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to iris/include/xmpp_liverosteritem.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2003  Justin Karneges
3
 
 *
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.
8
 
 *
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.
13
 
 *
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
17
 
 *
18
 
 */
19
 
 
20
 
#ifndef XMPP_LIVEROSTERITEM_H
21
 
#define XMPP_LIVEROSTERITEM_H
22
 
 
23
 
#include "xmpp_status.h"
24
 
#include "xmpp_resourcelist.h"
25
 
#include "xmpp_rosteritem.h"
26
 
 
27
 
namespace XMPP
28
 
{
29
 
        class LiveRosterItem : public RosterItem
30
 
        {
31
 
        public:
32
 
                LiveRosterItem(const Jid &j="");
33
 
                LiveRosterItem(const RosterItem &);
34
 
                ~LiveRosterItem();
35
 
 
36
 
                void setRosterItem(const RosterItem &);
37
 
 
38
 
                ResourceList & resourceList();
39
 
                ResourceList::Iterator priority();
40
 
 
41
 
                const ResourceList & resourceList() const;
42
 
                ResourceList::ConstIterator priority() const;
43
 
 
44
 
                bool isAvailable() const;
45
 
                const Status & lastUnavailableStatus() const;
46
 
                bool flagForDelete() const;
47
 
 
48
 
                void setLastUnavailableStatus(const Status &);
49
 
                void setFlagForDelete(bool);
50
 
 
51
 
        private:
52
 
                ResourceList v_resourceList;
53
 
                Status v_lastUnavailableStatus;
54
 
                bool v_flagForDelete;
55
 
        };
56
 
}
57
 
 
58
 
#endif