mirror of
https://github.com/mappu/miqt.git
synced 2025-02-01 19:10:21 +00:00
148 lines
10 KiB
C++
148 lines
10 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_GEN_QJSONOBJECT_H
|
|
#define MIQT_QT_GEN_QJSONOBJECT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "../libmiqt/libmiqt.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QJsonObject;
|
|
#if defined(WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__const_iterator)
|
|
typedef QJsonObject::const_iterator QJsonObject__const_iterator;
|
|
#else
|
|
class QJsonObject__const_iterator;
|
|
#endif
|
|
#if defined(WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__iterator)
|
|
typedef QJsonObject::iterator QJsonObject__iterator;
|
|
#else
|
|
class QJsonObject__iterator;
|
|
#endif
|
|
class QJsonValue;
|
|
class QJsonValuePtr;
|
|
class QJsonValueRef;
|
|
class QJsonValueRefPtr;
|
|
class QVariant;
|
|
#else
|
|
typedef struct QJsonObject QJsonObject;
|
|
typedef struct QJsonObject__const_iterator QJsonObject__const_iterator;
|
|
typedef struct QJsonObject__iterator QJsonObject__iterator;
|
|
typedef struct QJsonValue QJsonValue;
|
|
typedef struct QJsonValuePtr QJsonValuePtr;
|
|
typedef struct QJsonValueRef QJsonValueRef;
|
|
typedef struct QJsonValueRefPtr QJsonValueRefPtr;
|
|
typedef struct QVariant QVariant;
|
|
#endif
|
|
|
|
QJsonObject* QJsonObject_new();
|
|
QJsonObject* QJsonObject_new2(QJsonObject* other);
|
|
void QJsonObject_operatorAssign(QJsonObject* self, QJsonObject* other);
|
|
void QJsonObject_swap(QJsonObject* self, QJsonObject* other);
|
|
QJsonObject* QJsonObject_fromVariantMap(struct miqt_map /* of struct miqt_string to QVariant* */ map);
|
|
struct miqt_map /* of struct miqt_string to QVariant* */ QJsonObject_toVariantMap(const QJsonObject* self);
|
|
QJsonObject* QJsonObject_fromVariantHash(struct miqt_map /* of struct miqt_string to QVariant* */ map);
|
|
struct miqt_map /* of struct miqt_string to QVariant* */ QJsonObject_toVariantHash(const QJsonObject* self);
|
|
struct miqt_array /* of struct miqt_string */ QJsonObject_keys(const QJsonObject* self);
|
|
int QJsonObject_size(const QJsonObject* self);
|
|
int QJsonObject_count(const QJsonObject* self);
|
|
int QJsonObject_length(const QJsonObject* self);
|
|
bool QJsonObject_isEmpty(const QJsonObject* self);
|
|
QJsonValue* QJsonObject_value(const QJsonObject* self, struct miqt_string key);
|
|
QJsonValue* QJsonObject_operatorSubscript(const QJsonObject* self, struct miqt_string key);
|
|
QJsonValueRef* QJsonObject_operatorSubscriptWithKey(QJsonObject* self, struct miqt_string key);
|
|
void QJsonObject_remove(QJsonObject* self, struct miqt_string key);
|
|
QJsonValue* QJsonObject_take(QJsonObject* self, struct miqt_string key);
|
|
bool QJsonObject_contains(const QJsonObject* self, struct miqt_string key);
|
|
bool QJsonObject_operatorEqual(const QJsonObject* self, QJsonObject* other);
|
|
bool QJsonObject_operatorNotEqual(const QJsonObject* self, QJsonObject* other);
|
|
QJsonObject__iterator* QJsonObject_begin(QJsonObject* self);
|
|
QJsonObject__const_iterator* QJsonObject_begin2(const QJsonObject* self);
|
|
QJsonObject__const_iterator* QJsonObject_constBegin(const QJsonObject* self);
|
|
QJsonObject__iterator* QJsonObject_end(QJsonObject* self);
|
|
QJsonObject__const_iterator* QJsonObject_end2(const QJsonObject* self);
|
|
QJsonObject__const_iterator* QJsonObject_constEnd(const QJsonObject* self);
|
|
QJsonObject__iterator* QJsonObject_erase(QJsonObject* self, QJsonObject__iterator* it);
|
|
QJsonObject__iterator* QJsonObject_find(QJsonObject* self, struct miqt_string key);
|
|
QJsonObject__const_iterator* QJsonObject_findWithKey(const QJsonObject* self, struct miqt_string key);
|
|
QJsonObject__const_iterator* QJsonObject_constFind(const QJsonObject* self, struct miqt_string key);
|
|
QJsonObject__iterator* QJsonObject_insert(QJsonObject* self, struct miqt_string key, QJsonValue* value);
|
|
bool QJsonObject_empty(const QJsonObject* self);
|
|
void QJsonObject_delete(QJsonObject* self);
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_new();
|
|
QJsonObject__iterator* QJsonObject__iterator_new2(QJsonObject* obj, int index);
|
|
QJsonObject__iterator* QJsonObject__iterator_new3(QJsonObject__iterator* param1);
|
|
struct miqt_string QJsonObject__iterator_key(const QJsonObject__iterator* self);
|
|
QJsonValueRef* QJsonObject__iterator_value(const QJsonObject__iterator* self);
|
|
QJsonValueRef* QJsonObject__iterator_operatorMultiply(const QJsonObject__iterator* self);
|
|
QJsonValueRefPtr* QJsonObject__iterator_operatorMinusGreater(const QJsonObject__iterator* self);
|
|
QJsonValueRef* QJsonObject__iterator_operatorSubscript(QJsonObject__iterator* self, int j);
|
|
bool QJsonObject__iterator_operatorEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__iterator_operatorNotEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__iterator_operatorLesser(const QJsonObject__iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__iterator_operatorLesserOrEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__iterator_operatorGreater(const QJsonObject__iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__iterator_operatorGreaterOrEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other);
|
|
QJsonObject__iterator* QJsonObject__iterator_operatorPlusPlus(QJsonObject__iterator* self);
|
|
QJsonObject__iterator* QJsonObject__iterator_operatorPlusPlusWithInt(QJsonObject__iterator* self, int param1);
|
|
QJsonObject__iterator* QJsonObject__iterator_operatorMinusMinus(QJsonObject__iterator* self);
|
|
QJsonObject__iterator* QJsonObject__iterator_operatorMinusMinusWithInt(QJsonObject__iterator* self, int param1);
|
|
QJsonObject__iterator* QJsonObject__iterator_operatorPlus(const QJsonObject__iterator* self, int j);
|
|
QJsonObject__iterator* QJsonObject__iterator_operatorMinus(const QJsonObject__iterator* self, int j);
|
|
QJsonObject__iterator* QJsonObject__iterator_operatorPlusAssign(QJsonObject__iterator* self, int j);
|
|
QJsonObject__iterator* QJsonObject__iterator_operatorMinusAssign(QJsonObject__iterator* self, int j);
|
|
int QJsonObject__iterator_operatorMinusWithQJsonObjectiterator(const QJsonObject__iterator* self, QJsonObject__iterator* j);
|
|
bool QJsonObject__iterator_operatorEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__iterator_operatorNotEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__iterator_operatorLesserWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__iterator_operatorLesserOrEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__iterator_operatorGreaterWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__iterator_operatorGreaterOrEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other);
|
|
void QJsonObject__iterator_delete(QJsonObject__iterator* self);
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_new();
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_new2(QJsonObject* obj, int index);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_new3(QJsonObject__iterator* other);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_new4(QJsonObject__const_iterator* param1);
|
|
struct miqt_string QJsonObject__const_iterator_key(const QJsonObject__const_iterator* self);
|
|
QJsonValue* QJsonObject__const_iterator_value(const QJsonObject__const_iterator* self);
|
|
QJsonValue* QJsonObject__const_iterator_operatorMultiply(const QJsonObject__const_iterator* self);
|
|
QJsonValuePtr* QJsonObject__const_iterator_operatorMinusGreater(const QJsonObject__const_iterator* self);
|
|
QJsonValue* QJsonObject__const_iterator_operatorSubscript(QJsonObject__const_iterator* self, int j);
|
|
bool QJsonObject__const_iterator_operatorEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__const_iterator_operatorNotEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__const_iterator_operatorLesser(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__const_iterator_operatorLesserOrEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__const_iterator_operatorGreater(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other);
|
|
bool QJsonObject__const_iterator_operatorGreaterOrEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_operatorPlusPlus(QJsonObject__const_iterator* self);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_operatorPlusPlusWithInt(QJsonObject__const_iterator* self, int param1);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_operatorMinusMinus(QJsonObject__const_iterator* self);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_operatorMinusMinusWithInt(QJsonObject__const_iterator* self, int param1);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_operatorPlus(const QJsonObject__const_iterator* self, int j);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_operatorMinus(const QJsonObject__const_iterator* self, int j);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_operatorPlusAssign(QJsonObject__const_iterator* self, int j);
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_operatorMinusAssign(QJsonObject__const_iterator* self, int j);
|
|
int QJsonObject__const_iterator_operatorMinusWithQJsonObjectconstIterator(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* j);
|
|
bool QJsonObject__const_iterator_operatorEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__const_iterator_operatorNotEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__const_iterator_operatorLesserWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__const_iterator_operatorLesserOrEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__const_iterator_operatorGreaterWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other);
|
|
bool QJsonObject__const_iterator_operatorGreaterOrEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other);
|
|
void QJsonObject__const_iterator_delete(QJsonObject__const_iterator* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|