From ff57a31b95c48d75e49641177a8805193ea7ddaf Mon Sep 17 00:00:00 2001 From: "Javier S. Pedro" Date: Sun, 11 Sep 2011 00:22:17 +0200 Subject: Initial import. --- fakeproperty.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 fakeproperty.h (limited to 'fakeproperty.h') diff --git a/fakeproperty.h b/fakeproperty.h new file mode 100644 index 0000000..4509b83 --- /dev/null +++ b/fakeproperty.h @@ -0,0 +1,24 @@ +#ifndef FAKEPROPERTY_H +#define FAKEPROPERTY_H + +#include + +class FakeProperty : public QObject +{ + Q_OBJECT +public: + explicit FakeProperty(const QString& key, const QVariant& value, QObject *parent = 0); + const QString& key() const; + const QVariant& value() const; + +signals: + +public slots: + +private: + QString _key; + QVariant _value; + +}; + +#endif // FAKEPROPERTY_H -- cgit v1.2.3