blob: e012cb7dc5737422e09fd77e72d3a6587cfe7c5f [file] [log] [blame]
Luiz Capitulino66f70482009-08-28 15:27:06 -03001#ifndef QSTRING_H
2#define QSTRING_H
3
4#include "qobject.h"
5
6typedef struct QString {
7 QObject_HEAD;
8 char *string;
9} QString;
10
11QString *qstring_from_str(const char *str);
12const char *qstring_get_str(const QString *qstring);
13QString *qobject_to_qstring(const QObject *obj);
14
15#endif /* QSTRING_H */