~qutim/jreen/ubuntu

1 by Vsevolod Velichko
Import upstream version 1.1.0
1
/****************************************************************************
2
**
3
** Jreen
4
**
5
** Copyright © 2011 Ruslan Nigmatullin <euroelessar@yandex.ru>
6
**
7
*****************************************************************************
8
**
9
** $JREEN_BEGIN_LICENSE$
10
** This program is free software: you can redistribute it and/or modify
11
** it under the terms of the GNU General Public License as published by
12
** the Free Software Foundation, either version 2 of the License, or
13
** (at your option) any later version.
14
**
15
** This program is distributed in the hope that it will be useful,
16
** but WITHOUT ANY WARRANTY; without even the implied warranty of
17
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18
** See the GNU General Public License for more details.
19
**
20
** You should have received a copy of the GNU General Public License
21
** along with this program.  If not, see http://www.gnu.org/licenses/.
22
** $JREEN_END_LICENSE$
23
**
24
****************************************************************************/
25
26
#ifndef IQREPLY_H
27
#define IQREPLY_H
28
29
#include "jreen.h"
30
31
namespace Jreen
32
{
33
class Client;
34
class ClientPrivate;
35
class IQ;
36
class IQReplyPrivate;
37
38
class JREEN_EXPORT IQReply : public QObject
39
{
40
    Q_OBJECT
41
	Q_DECLARE_PRIVATE(IQReply)
42
public:
43
	~IQReply();
44
45
	QVariant data() const;
46
	void setData(const QVariant &data);
47
	
48
signals:
49
	void received(const Jreen::IQ &iq);
50
	
51
protected:
52
    explicit IQReply(Client *client);
53
	
54
	friend class Jreen::ClientPrivate;
55
	QScopedPointer<IQReplyPrivate> d_ptr;
56
};
57
}
58
59
#endif // IQREPLY_H