summaryrefslogtreecommitdiff
path: root/fakeproperty.cpp
blob: 38d9040462e140e123cbc2132ed69346bf248a15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "fakeproperty.h"

FakeProperty::FakeProperty(const QString& key, const QVariant& value, QObject *parent) :
	QObject(parent), _key(key), _value(value)
{
}

const QString& FakeProperty::key() const
{
	return _key;
}

const QVariant& FakeProperty::value() const
{
	return _value;
}