~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 PUBSUBMANAGER_P_H
27
#define PUBSUBMANAGER_P_H
28
29
#include "pubsubmanager.h"
30
#include "dataform.h"
31
32
namespace Jreen
33
{
34
	namespace PubSub
35
	{
36
		class ManagerPrivate
37
		{
38
		public:
39
			Client *client;
40
			QList<AbstractPayloadFactory *> factories;
41
		};
42
		
43
		class Publish : public Payload
44
		{
45
			J_PAYLOAD(Jreen::PubSub::Publish)
46
		public:
47
			Publish() {}
48
			Publish(const QList<Payload::Ptr> &i, const DataForm::Ptr &f) : items(i), form(f) {}
49
			QList<Payload::Ptr> items;
50
			QString node;
51
			DataForm::Ptr form;
52
		};
53
	}
54
}
55
#endif // PUBSUBMANAGER_P_H