blob: fe0da278c9818c1d6107114b32ed488ca48d0323 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "keyvalue.h"
goodies::KeyValue::KeyValue(
const QVariant& key,
const QVariant& value,
QObject* parent
)
: goodies::G_Object(parent)
, INIT_FIELD(key)
, INIT_FIELD(value)
{
}
|