summaryrefslogtreecommitdiff
path: root/fakeproperty.h
diff options
context:
space:
mode:
authorJavier S. Pedro <maemo@javispedro.com>2011-09-11 00:22:17 +0200
committerJavier <javier@pcjavier.(none)>2011-09-11 00:22:17 +0200
commitff57a31b95c48d75e49641177a8805193ea7ddaf (patch)
tree6ce607bcc4813bc8fbd15f841754a4a77f013e3d /fakeproperty.h
downloadglol-ff57a31b95c48d75e49641177a8805193ea7ddaf.tar.gz
glol-ff57a31b95c48d75e49641177a8805193ea7ddaf.zip
Initial import.
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