summaryrefslogtreecommitdiff
path: root/keyvalue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'keyvalue.cpp')
-rw-r--r--keyvalue.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/keyvalue.cpp b/keyvalue.cpp
new file mode 100644
index 0000000..1dcaa92
--- /dev/null
+++ b/keyvalue.cpp
@@ -0,0 +1,8 @@
+#include "keyvalue.h"
+
+KeyValue::KeyValue(const QVariant& key, const QVariant& value, QObject* parent)
+ : G_Object(parent)
+ , INIT_FIELD(key)
+ , INIT_FIELD(value)
+{
+}