2010-05-12 21:34:42 +02:00
|
|
|
/*
|
|
|
|
* QString Module
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Red Hat Inc.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Luiz Capitulino <lcapitulino@redhat.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU LGPL, version 2.1 or later.
|
|
|
|
* See the COPYING.LIB file in the top-level directory.
|
|
|
|
*/
|
|
|
|
|
2009-08-28 20:27:06 +02:00
|
|
|
#ifndef QSTRING_H
|
|
|
|
#define QSTRING_H
|
|
|
|
|
2012-12-17 18:19:43 +01:00
|
|
|
#include "qapi/qmp/qobject.h"
|
2009-08-28 20:27:06 +02:00
|
|
|
|
2018-02-01 12:18:34 +01:00
|
|
|
struct QString {
|
2018-04-19 17:01:42 +02:00
|
|
|
struct QObjectBase_ base;
|
2020-12-11 18:11:52 +01:00
|
|
|
const char *string;
|
2018-02-01 12:18:34 +01:00
|
|
|
};
|
2009-08-28 20:27:06 +02:00
|
|
|
|
2009-11-11 17:49:51 +01:00
|
|
|
QString *qstring_new(void);
|
2009-08-28 20:27:06 +02:00
|
|
|
QString *qstring_from_str(const char *str);
|
2018-07-24 15:43:39 +02:00
|
|
|
QString *qstring_from_substr(const char *str, size_t start, size_t end);
|
2020-12-11 18:11:36 +01:00
|
|
|
QString *qstring_from_gstring(GString *gstr);
|
2009-08-28 20:27:06 +02:00
|
|
|
const char *qstring_get_str(const QString *qstring);
|
|
|
|
|
|
|
|
#endif /* QSTRING_H */
|