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

« back to all changes in this revision

Viewing changes to iris/src/xmpp/xmpp-im/xmpp_address.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) 2006  Remko Troncon
 
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_ADDRESS_H
 
21
#define XMPP_ADDRESS_H
 
22
 
 
23
#include <QString>
 
24
 
 
25
#include "xmpp/jid/jid.h"
 
26
 
 
27
class QDomElement;
 
28
 
 
29
namespace XMPP
 
30
{
 
31
        class Address
 
32
        {
 
33
        public:
 
34
                typedef enum { Unknown, To, Cc, Bcc, ReplyTo, ReplyRoom, NoReply, OriginalFrom, OriginalTo } Type;
 
35
 
 
36
                Address(Type type = Unknown, const Jid& jid = Jid());
 
37
                Address(const QDomElement&);
 
38
 
 
39
                const Jid& jid() const;
 
40
                const QString& uri() const;
 
41
                const QString& node() const;
 
42
                const QString& desc() const;
 
43
                bool delivered() const;
 
44
                Type type() const;
 
45
                
 
46
                QDomElement toXml(Stanza&) const;
 
47
                void fromXml(const QDomElement& t);
 
48
 
 
49
                void setJid(const Jid &);
 
50
                void setUri(const QString &);
 
51
                void setNode(const QString &);
 
52
                void setDesc(const QString &);
 
53
                void setDelivered(bool);
 
54
                void setType(Type);
 
55
 
 
56
        private:
 
57
                Jid v_jid;
 
58
                QString v_uri, v_node, v_desc;
 
59
                bool v_delivered;
 
60
                Type v_type;
 
61
        };
 
62
 
 
63
        typedef QList<Address> AddressList;
 
64
};
 
65
        
 
66
#endif