From fb08dde0988f920fed93d07745790e7ebc12af32 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Fri, 28 Aug 2009 15:27:07 -0300 Subject: Introduce QDict QDict is a high-level dictionary data type that can be used to store a collection of QObjects. A unique key is associated with only one QObject. The following functions are available: - qdict_new() Create a new QDict - qdict_put() Add a new 'key:object' pair - qdict_get() Get the QObject of a given key - qdict_del() Delete a 'key:object' pair - qdict_size() Return the size of the dictionary - qdict_haskey() Check if a given 'key' exists Some high-level helpers to operate on QStrings and QInts objects are also provided. Signed-off-by: Luiz Capitulino Signed-off-by: Anthony Liguori --- qobject.h | 1 + 1 file changed, 1 insertion(+) (limited to 'qobject.h') diff --git a/qobject.h b/qobject.h index d4eeb3f6c..39b86493e 100644 --- a/qobject.h +++ b/qobject.h @@ -39,6 +39,7 @@ typedef enum { QTYPE_NONE, QTYPE_QINT, QTYPE_QSTRING, + QTYPE_QDICT, } qtype_code; struct QObject; -- cgit v1.2.3