Statistics
| Branch: | Revision:

root / qobject.h @ 1e6eec8b

History | View | Annotate | Download (2.7 kB)

# Date Author Comment
6b8d1ece 09/04/2009 05:37 pm Luiz Capitulino

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 <>...

66f70487 09/04/2009 05:37 pm Luiz Capitulino

Introduce QString

QString is a high-level data type that can be used to represent
C strings.

The following functions are available:

- qstring_from_str() Create a new QString
- qstring_get_str() Get a pointer to the stored string

Note that qstring_get_str() is too low-level for a data type like...

fb08dde0 09/04/2009 05:37 pm Luiz Capitulino

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...

5a1a2356 09/04/2009 05:37 pm Luiz Capitulino

Introduce QObject

This commit introduces the qobject.h header file, it contains
basic QObject definitions and helper macros.

Signed-off-by: Luiz Capitulino <>
Signed-off-by: Anthony Liguori <>