~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
#include <QStringList>
27
#include <QXmlStreamWriter>
28
#include "capabilities.h"
29
#include "capabilitiesfactory_p.h"
30
31
namespace Jreen
32
{
33
34
class CapabilitiesPrivate
35
{
36
public:
37
	QString ver;
38
	QString node;
39
};
40
	
41
Capabilities::Capabilities(const QString &ver, const QString &node) : d_ptr(new CapabilitiesPrivate)
42
{
43
	Q_D(Capabilities);
44
	d->ver = ver;
45
	d->node = node;
46
}
47
48
Capabilities::~Capabilities()
49
{
50
}
51
52
void Capabilities::setNode(const QString &node)
53
{
54
	d_func()->node = node;
55
}
56
57
QString Capabilities::node() const
58
{
59
	return d_func()->node;
60
}
61
62
QString Capabilities::ver() const
63
{
64
	return d_func()->ver;
65
}
66
67
QString Capabilities::calculatedNode() const
68
{
69
	//return CapabilitesFactory::hashValue(this);
70
	return QString();
71
}
72
73
}