From 6b8d1ece705752cb0214fb89ccd3925eddc62df8 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Fri, 28 Aug 2009 15:27:05 -0300 Subject: Introduce QInt QInt is a high-level data type that can be used to represent integers, internally it stores an int64_t value. The following functions are available: - qint_from_int() Create a new QInt - qint_get_int() Get the stored integer 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 80c85bad2..c6bee8ec6 100644 --- a/qobject.h +++ b/qobject.h @@ -37,6 +37,7 @@ typedef enum { QTYPE_NONE, + QTYPE_QINT, } qtype_code; struct QObject; -- cgit v1.2.3