summaryrefslogtreecommitdiff
path: root/keyvalue.cpp
blob: 1dcaa928efd76b968dd80708cf2e77060ab4270d (plain)
1
2
3
4
5
6
7
8
#include "keyvalue.h"

KeyValue::KeyValue(const QVariant& key, const QVariant& value, QObject* parent)
    : G_Object(parent)
    , INIT_FIELD(key)
    , INIT_FIELD(value)
{
}