mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
548 lines
21 KiB
C++
548 lines
21 KiB
C++
#include <QJsonObject>
|
|
#define WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__const_iterator
|
|
#define WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__iterator
|
|
#include <QJsonValue>
|
|
#include <QJsonValueConstRef>
|
|
#include <QJsonValueRef>
|
|
#include <QList>
|
|
#include <QMap>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QVariant>
|
|
#include <qjsonobject.h>
|
|
#include "gen_qjsonobject.h"
|
|
#include "_cgo_export.h"
|
|
|
|
void QJsonObject_new(QJsonObject** outptr_QJsonObject) {
|
|
QJsonObject* ret = new QJsonObject();
|
|
*outptr_QJsonObject = ret;
|
|
}
|
|
|
|
void QJsonObject_new2(QJsonObject* other, QJsonObject** outptr_QJsonObject) {
|
|
QJsonObject* ret = new QJsonObject(*other);
|
|
*outptr_QJsonObject = ret;
|
|
}
|
|
|
|
void QJsonObject_OperatorAssign(QJsonObject* self, QJsonObject* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
void QJsonObject_Swap(QJsonObject* self, QJsonObject* other) {
|
|
self->swap(*other);
|
|
}
|
|
|
|
QJsonObject* QJsonObject_FromVariantMap(struct miqt_map /* of struct miqt_string to QVariant* */ mapVal) {
|
|
QVariantMap mapVal_QMap;
|
|
struct miqt_string* mapVal_karr = static_cast<struct miqt_string*>(mapVal.keys);
|
|
QVariant** mapVal_varr = static_cast<QVariant**>(mapVal.values);
|
|
for(size_t i = 0; i < mapVal.len; ++i) {
|
|
QString mapVal_karr_i_QString = QString::fromUtf8(mapVal_karr[i].data, mapVal_karr[i].len);
|
|
mapVal_QMap[mapVal_karr_i_QString] = *(mapVal_varr[i]);
|
|
}
|
|
return new QJsonObject(QJsonObject::fromVariantMap(mapVal_QMap));
|
|
}
|
|
|
|
struct miqt_map /* of struct miqt_string to QVariant* */ QJsonObject_ToVariantMap(const QJsonObject* self) {
|
|
QVariantMap _ret = self->toVariantMap();
|
|
// Convert QMap<> from C++ memory to manually-managed C memory
|
|
struct miqt_string* _karr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.size()));
|
|
QVariant** _varr = static_cast<QVariant**>(malloc(sizeof(QVariant*) * _ret.size()));
|
|
int _ctr = 0;
|
|
for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) {
|
|
QString _mapkey_ret = _itr->first;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _mapkey_b = _mapkey_ret.toUtf8();
|
|
struct miqt_string _mapkey_ms;
|
|
_mapkey_ms.len = _mapkey_b.length();
|
|
_mapkey_ms.data = static_cast<char*>(malloc(_mapkey_ms.len));
|
|
memcpy(_mapkey_ms.data, _mapkey_b.data(), _mapkey_ms.len);
|
|
_karr[_ctr] = _mapkey_ms;
|
|
_varr[_ctr] = new QVariant(_itr->second);
|
|
_ctr++;
|
|
}
|
|
struct miqt_map _out;
|
|
_out.len = _ret.size();
|
|
_out.keys = static_cast<void*>(_karr);
|
|
_out.values = static_cast<void*>(_varr);
|
|
return _out;
|
|
}
|
|
|
|
QJsonObject* QJsonObject_FromVariantHash(struct miqt_map /* of struct miqt_string to QVariant* */ mapVal) {
|
|
QVariantHash mapVal_QMap;
|
|
mapVal_QMap.reserve(mapVal.len);
|
|
struct miqt_string* mapVal_karr = static_cast<struct miqt_string*>(mapVal.keys);
|
|
QVariant** mapVal_varr = static_cast<QVariant**>(mapVal.values);
|
|
for(size_t i = 0; i < mapVal.len; ++i) {
|
|
QString mapVal_karr_i_QString = QString::fromUtf8(mapVal_karr[i].data, mapVal_karr[i].len);
|
|
mapVal_QMap[mapVal_karr_i_QString] = *(mapVal_varr[i]);
|
|
}
|
|
return new QJsonObject(QJsonObject::fromVariantHash(mapVal_QMap));
|
|
}
|
|
|
|
struct miqt_map /* of struct miqt_string to QVariant* */ QJsonObject_ToVariantHash(const QJsonObject* self) {
|
|
QVariantHash _ret = self->toVariantHash();
|
|
// Convert QMap<> from C++ memory to manually-managed C memory
|
|
struct miqt_string* _karr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.size()));
|
|
QVariant** _varr = static_cast<QVariant**>(malloc(sizeof(QVariant*) * _ret.size()));
|
|
int _ctr = 0;
|
|
for (auto _itr = _ret.keyValueBegin(); _itr != _ret.keyValueEnd(); ++_itr) {
|
|
QString _hashkey_ret = _itr->first;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _hashkey_b = _hashkey_ret.toUtf8();
|
|
struct miqt_string _hashkey_ms;
|
|
_hashkey_ms.len = _hashkey_b.length();
|
|
_hashkey_ms.data = static_cast<char*>(malloc(_hashkey_ms.len));
|
|
memcpy(_hashkey_ms.data, _hashkey_b.data(), _hashkey_ms.len);
|
|
_karr[_ctr] = _hashkey_ms;
|
|
_varr[_ctr] = new QVariant(_itr->second);
|
|
_ctr++;
|
|
}
|
|
struct miqt_map _out;
|
|
_out.len = _ret.size();
|
|
_out.keys = static_cast<void*>(_karr);
|
|
_out.values = static_cast<void*>(_varr);
|
|
return _out;
|
|
}
|
|
|
|
struct miqt_array /* of struct miqt_string */ QJsonObject_Keys(const QJsonObject* self) {
|
|
QStringList _ret = self->keys();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
struct miqt_string* _arr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.length()));
|
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
|
QString _lv_ret = _ret[i];
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _lv_b = _lv_ret.toUtf8();
|
|
struct miqt_string _lv_ms;
|
|
_lv_ms.len = _lv_b.length();
|
|
_lv_ms.data = static_cast<char*>(malloc(_lv_ms.len));
|
|
memcpy(_lv_ms.data, _lv_b.data(), _lv_ms.len);
|
|
_arr[i] = _lv_ms;
|
|
}
|
|
struct miqt_array _out;
|
|
_out.len = _ret.length();
|
|
_out.data = static_cast<void*>(_arr);
|
|
return _out;
|
|
}
|
|
|
|
ptrdiff_t QJsonObject_Size(const QJsonObject* self) {
|
|
qsizetype _ret = self->size();
|
|
return static_cast<ptrdiff_t>(_ret);
|
|
}
|
|
|
|
ptrdiff_t QJsonObject_Count(const QJsonObject* self) {
|
|
qsizetype _ret = self->count();
|
|
return static_cast<ptrdiff_t>(_ret);
|
|
}
|
|
|
|
ptrdiff_t QJsonObject_Length(const QJsonObject* self) {
|
|
qsizetype _ret = self->length();
|
|
return static_cast<ptrdiff_t>(_ret);
|
|
}
|
|
|
|
bool QJsonObject_IsEmpty(const QJsonObject* self) {
|
|
return self->isEmpty();
|
|
}
|
|
|
|
QJsonValue* QJsonObject_Value(const QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonValue(self->value(key_QString));
|
|
}
|
|
|
|
QJsonValue* QJsonObject_OperatorSubscript(const QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonValue(self->operator[](key_QString));
|
|
}
|
|
|
|
QJsonValueRef* QJsonObject_OperatorSubscriptWithKey(QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonValueRef(self->operator[](key_QString));
|
|
}
|
|
|
|
void QJsonObject_Remove(QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
self->remove(key_QString);
|
|
}
|
|
|
|
QJsonValue* QJsonObject_Take(QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonValue(self->take(key_QString));
|
|
}
|
|
|
|
bool QJsonObject_Contains(const QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return self->contains(key_QString);
|
|
}
|
|
|
|
bool QJsonObject_OperatorEqual(const QJsonObject* self, QJsonObject* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonObject_OperatorNotEqual(const QJsonObject* self, QJsonObject* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject_Begin(QJsonObject* self) {
|
|
return new QJsonObject::iterator(self->begin());
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject_Begin2(const QJsonObject* self) {
|
|
return new QJsonObject::const_iterator(self->begin());
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject_ConstBegin(const QJsonObject* self) {
|
|
return new QJsonObject::const_iterator(self->constBegin());
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject_End(QJsonObject* self) {
|
|
return new QJsonObject::iterator(self->end());
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject_End2(const QJsonObject* self) {
|
|
return new QJsonObject::const_iterator(self->end());
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject_ConstEnd(const QJsonObject* self) {
|
|
return new QJsonObject::const_iterator(self->constEnd());
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject_Erase(QJsonObject* self, QJsonObject__iterator* it) {
|
|
return new QJsonObject::iterator(self->erase(*it));
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject_Find(QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonObject::iterator(self->find(key_QString));
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject_FindWithKey(const QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonObject::const_iterator(self->find(key_QString));
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject_ConstFind(const QJsonObject* self, struct miqt_string key) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonObject::const_iterator(self->constFind(key_QString));
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject_Insert(QJsonObject* self, struct miqt_string key, QJsonValue* value) {
|
|
QString key_QString = QString::fromUtf8(key.data, key.len);
|
|
return new QJsonObject::iterator(self->insert(key_QString, *value));
|
|
}
|
|
|
|
bool QJsonObject_Empty(const QJsonObject* self) {
|
|
return self->empty();
|
|
}
|
|
|
|
void QJsonObject_Delete(QJsonObject* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QJsonObject*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QJsonObject__iterator_new(QJsonObject__iterator** outptr_QJsonObject__iterator) {
|
|
QJsonObject::iterator* ret = new QJsonObject::iterator();
|
|
*outptr_QJsonObject__iterator = ret;
|
|
}
|
|
|
|
void QJsonObject__iterator_new2(QJsonObject* obj, ptrdiff_t index, QJsonObject__iterator** outptr_QJsonObject__iterator) {
|
|
QJsonObject::iterator* ret = new QJsonObject::iterator(obj, (qsizetype)(index));
|
|
*outptr_QJsonObject__iterator = ret;
|
|
}
|
|
|
|
void QJsonObject__iterator_new3(QJsonObject__iterator* other, QJsonObject__iterator** outptr_QJsonObject__iterator) {
|
|
QJsonObject::iterator* ret = new QJsonObject::iterator(*other);
|
|
*outptr_QJsonObject__iterator = ret;
|
|
}
|
|
|
|
void QJsonObject__iterator_OperatorAssign(QJsonObject__iterator* self, QJsonObject__iterator* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
struct miqt_string QJsonObject__iterator_Key(const QJsonObject__iterator* self) {
|
|
QString _ret = self->key();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QJsonValueRef* QJsonObject__iterator_Value(const QJsonObject__iterator* self) {
|
|
return new QJsonValueRef(self->value());
|
|
}
|
|
|
|
QJsonValueRef* QJsonObject__iterator_OperatorMultiply(const QJsonObject__iterator* self) {
|
|
return new QJsonValueRef(self->operator*());
|
|
}
|
|
|
|
QJsonValueConstRef* QJsonObject__iterator_OperatorMinusGreater(const QJsonObject__iterator* self) {
|
|
return (QJsonValueConstRef*) self->operator->();
|
|
}
|
|
|
|
QJsonValueRef* QJsonObject__iterator_OperatorMinusGreater2(QJsonObject__iterator* self) {
|
|
return self->operator->();
|
|
}
|
|
|
|
QJsonValueRef* QJsonObject__iterator_OperatorSubscript(const QJsonObject__iterator* self, ptrdiff_t j) {
|
|
return new QJsonValueRef(self->operator[]((qsizetype)(j)));
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorNotEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorLesser(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
|
|
return (*self < *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorLesserOrEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
|
|
return (*self <= *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorGreater(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
|
|
return (*self > *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorGreaterOrEqual(const QJsonObject__iterator* self, QJsonObject__iterator* other) {
|
|
return (*self >= *other);
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_OperatorPlusPlus(QJsonObject__iterator* self) {
|
|
QJsonObject::iterator& _ret = self->operator++();
|
|
// Cast returned reference into pointer
|
|
return &_ret;
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_OperatorPlusPlusWithInt(QJsonObject__iterator* self, int param1) {
|
|
return new QJsonObject::iterator(self->operator++(static_cast<int>(param1)));
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_OperatorMinusMinus(QJsonObject__iterator* self) {
|
|
QJsonObject::iterator& _ret = self->operator--();
|
|
// Cast returned reference into pointer
|
|
return &_ret;
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_OperatorMinusMinusWithInt(QJsonObject__iterator* self, int param1) {
|
|
return new QJsonObject::iterator(self->operator--(static_cast<int>(param1)));
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_OperatorPlus(const QJsonObject__iterator* self, ptrdiff_t j) {
|
|
return new QJsonObject::iterator(self->operator+((qsizetype)(j)));
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_OperatorMinus(const QJsonObject__iterator* self, ptrdiff_t j) {
|
|
return new QJsonObject::iterator(self->operator-((qsizetype)(j)));
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_OperatorPlusAssign(QJsonObject__iterator* self, ptrdiff_t j) {
|
|
QJsonObject::iterator& _ret = self->operator+=((qsizetype)(j));
|
|
// Cast returned reference into pointer
|
|
return &_ret;
|
|
}
|
|
|
|
QJsonObject__iterator* QJsonObject__iterator_OperatorMinusAssign(QJsonObject__iterator* self, ptrdiff_t j) {
|
|
QJsonObject::iterator& _ret = self->operator-=((qsizetype)(j));
|
|
// Cast returned reference into pointer
|
|
return &_ret;
|
|
}
|
|
|
|
ptrdiff_t QJsonObject__iterator_OperatorMinusWithQJsonObjectiterator(const QJsonObject__iterator* self, QJsonObject__iterator* j) {
|
|
qsizetype _ret = self->operator-(*j);
|
|
return static_cast<ptrdiff_t>(_ret);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorNotEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorLesserWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self < *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorLesserOrEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self <= *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorGreaterWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self > *other);
|
|
}
|
|
|
|
bool QJsonObject__iterator_OperatorGreaterOrEqualWithOther(const QJsonObject__iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self >= *other);
|
|
}
|
|
|
|
void QJsonObject__iterator_Delete(QJsonObject__iterator* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QJsonObject::iterator*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
void QJsonObject__const_iterator_new(QJsonObject__const_iterator** outptr_QJsonObject__const_iterator) {
|
|
QJsonObject::const_iterator* ret = new QJsonObject::const_iterator();
|
|
*outptr_QJsonObject__const_iterator = ret;
|
|
}
|
|
|
|
void QJsonObject__const_iterator_new2(QJsonObject* obj, ptrdiff_t index, QJsonObject__const_iterator** outptr_QJsonObject__const_iterator) {
|
|
QJsonObject::const_iterator* ret = new QJsonObject::const_iterator(obj, (qsizetype)(index));
|
|
*outptr_QJsonObject__const_iterator = ret;
|
|
}
|
|
|
|
void QJsonObject__const_iterator_new3(QJsonObject__iterator* other, QJsonObject__const_iterator** outptr_QJsonObject__const_iterator) {
|
|
QJsonObject::const_iterator* ret = new QJsonObject::const_iterator(*other);
|
|
*outptr_QJsonObject__const_iterator = ret;
|
|
}
|
|
|
|
void QJsonObject__const_iterator_new4(QJsonObject__const_iterator* other, QJsonObject__const_iterator** outptr_QJsonObject__const_iterator) {
|
|
QJsonObject::const_iterator* ret = new QJsonObject::const_iterator(*other);
|
|
*outptr_QJsonObject__const_iterator = ret;
|
|
}
|
|
|
|
void QJsonObject__const_iterator_OperatorAssign(QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
|
|
self->operator=(*other);
|
|
}
|
|
|
|
struct miqt_string QJsonObject__const_iterator_Key(const QJsonObject__const_iterator* self) {
|
|
QString _ret = self->key();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QJsonValueConstRef* QJsonObject__const_iterator_Value(const QJsonObject__const_iterator* self) {
|
|
return new QJsonValueConstRef(self->value());
|
|
}
|
|
|
|
QJsonValueConstRef* QJsonObject__const_iterator_OperatorMultiply(const QJsonObject__const_iterator* self) {
|
|
return new QJsonValueConstRef(self->operator*());
|
|
}
|
|
|
|
QJsonValueConstRef* QJsonObject__const_iterator_OperatorMinusGreater(const QJsonObject__const_iterator* self) {
|
|
return (QJsonValueConstRef*) self->operator->();
|
|
}
|
|
|
|
QJsonValueConstRef* QJsonObject__const_iterator_OperatorSubscript(const QJsonObject__const_iterator* self, ptrdiff_t j) {
|
|
return new QJsonValueConstRef(self->operator[]((qsizetype)(j)));
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorNotEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorLesser(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self < *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorLesserOrEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self <= *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorGreater(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self > *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorGreaterOrEqual(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) {
|
|
return (*self >= *other);
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlusPlus(QJsonObject__const_iterator* self) {
|
|
QJsonObject::const_iterator& _ret = self->operator++();
|
|
// Cast returned reference into pointer
|
|
return &_ret;
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlusPlusWithInt(QJsonObject__const_iterator* self, int param1) {
|
|
return new QJsonObject::const_iterator(self->operator++(static_cast<int>(param1)));
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinusMinus(QJsonObject__const_iterator* self) {
|
|
QJsonObject::const_iterator& _ret = self->operator--();
|
|
// Cast returned reference into pointer
|
|
return &_ret;
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinusMinusWithInt(QJsonObject__const_iterator* self, int param1) {
|
|
return new QJsonObject::const_iterator(self->operator--(static_cast<int>(param1)));
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlus(const QJsonObject__const_iterator* self, ptrdiff_t j) {
|
|
return new QJsonObject::const_iterator(self->operator+((qsizetype)(j)));
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinus(const QJsonObject__const_iterator* self, ptrdiff_t j) {
|
|
return new QJsonObject::const_iterator(self->operator-((qsizetype)(j)));
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlusAssign(QJsonObject__const_iterator* self, ptrdiff_t j) {
|
|
QJsonObject::const_iterator& _ret = self->operator+=((qsizetype)(j));
|
|
// Cast returned reference into pointer
|
|
return &_ret;
|
|
}
|
|
|
|
QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinusAssign(QJsonObject__const_iterator* self, ptrdiff_t j) {
|
|
QJsonObject::const_iterator& _ret = self->operator-=((qsizetype)(j));
|
|
// Cast returned reference into pointer
|
|
return &_ret;
|
|
}
|
|
|
|
ptrdiff_t QJsonObject__const_iterator_OperatorMinusWithQJsonObjectconstIterator(const QJsonObject__const_iterator* self, QJsonObject__const_iterator* j) {
|
|
qsizetype _ret = self->operator-(*j);
|
|
return static_cast<ptrdiff_t>(_ret);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
|
|
return (*self == *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorNotEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
|
|
return (*self != *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorLesserWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
|
|
return (*self < *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorLesserOrEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
|
|
return (*self <= *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorGreaterWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
|
|
return (*self > *other);
|
|
}
|
|
|
|
bool QJsonObject__const_iterator_OperatorGreaterOrEqualWithOther(const QJsonObject__const_iterator* self, QJsonObject__iterator* other) {
|
|
return (*self >= *other);
|
|
}
|
|
|
|
void QJsonObject__const_iterator_Delete(QJsonObject__const_iterator* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QJsonObject::const_iterator*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|