aboutsummaryrefslogtreecommitdiff
path: root/qobject.h
diff options
context:
space:
mode:
authorLuiz Capitulino <lcapitulino@redhat.com>2009-10-07 13:41:48 -0300
committerAnthony Liguori <aliguori@us.ibm.com>2009-10-08 21:17:18 -0500
commita6fd08eb625ae3c6a878f527270a9d384d1b04d2 (patch)
treea303e22cb3a27f584637acb7e7f33ddf66f7ac30 /qobject.h
parentd559ba1af286bba5974ca3ee7eb27f942ca55f52 (diff)
Introduce QList
QList is a high-level data type that can be used to store QObjects in a singly-linked list. The following functions are available: - qlist_new() Create a new QList - qlist_append() Append a QObject to the list - qlist_iter() Iterate over stored QObjects Patchworks-ID: 35334 Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'qobject.h')
-rw-r--r--qobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/qobject.h b/qobject.h
index dcc8c638e5..4cc928770d 100644
--- a/qobject.h
+++ b/qobject.h
@@ -40,6 +40,7 @@ typedef enum {
QTYPE_QINT,
QTYPE_QSTRING,
QTYPE_QDICT,
+ QTYPE_QLIST,
} qtype_code;
struct QObject;