summaryrefslogtreecommitdiff
path: root/fakeproperty.h
diff options
context:
space:
mode:
Diffstat (limited to 'fakeproperty.h')
-rw-r--r--fakeproperty.h24
1 files changed, 24 insertions, 0 deletions
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 <QtCore/QVariant>
+
+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