summaryrefslogtreecommitdiff
path: root/keyvalue.cpp
diff options
context:
space:
mode:
authorNikita Kostovsky <nikita@kostovsky.me>2025-09-19 20:54:13 +0200
committerNikita Kostovsky <nikita@kostovsky.me>2025-09-19 20:54:13 +0200
commite7019763076cbbe3d52c2a03133c3ded5558f017 (patch)
treebcf5ff116630bebaa09492bdcdaf08a54dfd1e28 /keyvalue.cpp
initial commit
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)
+{
+}