#include #define WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__const_iterator #define WORKAROUND_INNER_CLASS_DEFINITION_QJsonObject__iterator #include #include #include #include #include #include #include #include #include "qjsonobject.h" #include "gen_qjsonobject.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } QJsonObject* QJsonObject_new() { return new QJsonObject(); } QJsonObject* QJsonObject_new2(QJsonObject* other) { return new QJsonObject(*other); } void QJsonObject_OperatorAssign(QJsonObject* self, QJsonObject* other) { self->operator=(*other); } void QJsonObject_Swap(QJsonObject* self, QJsonObject* other) { self->swap(*other); } void QJsonObject_Keys(QJsonObject* self, char*** _out, int** _out_Lengths, size_t* _out_len) { QStringList ret = const_cast(self)->keys(); // Convert QStringList from C++ memory to manually-managed C memory char** __out = static_cast(malloc(sizeof(char*) * ret.length())); int* __out_Lengths = static_cast(malloc(sizeof(int) * ret.length())); for (size_t i = 0, e = ret.length(); i < e; ++i) { // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret[i].toUtf8(); __out[i] = static_cast(malloc(b.length())); memcpy(__out[i], b.data(), b.length()); __out_Lengths[i] = b.length(); } *_out = __out; *_out_Lengths = __out_Lengths; *_out_len = ret.length(); } int QJsonObject_Size(QJsonObject* self) { return const_cast(self)->size(); } int QJsonObject_Count(QJsonObject* self) { return const_cast(self)->count(); } int QJsonObject_Length(QJsonObject* self) { return const_cast(self)->length(); } bool QJsonObject_IsEmpty(QJsonObject* self) { return const_cast(self)->isEmpty(); } QJsonValue* QJsonObject_Value(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); QJsonValue ret = const_cast(self)->value(key_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValue(ret)); } QJsonValue* QJsonObject_OperatorSubscript(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); QJsonValue ret = const_cast(self)->operator[](key_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValue(ret)); } QJsonValueRef* QJsonObject_OperatorSubscriptWithKey(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); QJsonValueRef ret = self->operator[](key_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValueRef(ret)); } void QJsonObject_Remove(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); self->remove(key_QString); } QJsonValue* QJsonObject_Take(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); QJsonValue ret = self->take(key_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValue(ret)); } bool QJsonObject_Contains(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); return const_cast(self)->contains(key_QString); } bool QJsonObject_OperatorEqual(QJsonObject* self, QJsonObject* other) { return const_cast(self)->operator==(*other); } bool QJsonObject_OperatorNotEqual(QJsonObject* self, QJsonObject* other) { return const_cast(self)->operator!=(*other); } QJsonObject__iterator* QJsonObject_Begin(QJsonObject* self) { QJsonObject::iterator ret = self->begin(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } QJsonObject__const_iterator* QJsonObject_Begin2(QJsonObject* self) { QJsonObject::const_iterator ret = const_cast(self)->begin(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__const_iterator* QJsonObject_ConstBegin(QJsonObject* self) { QJsonObject::const_iterator ret = const_cast(self)->constBegin(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__iterator* QJsonObject_End(QJsonObject* self) { QJsonObject::iterator ret = self->end(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } QJsonObject__const_iterator* QJsonObject_End2(QJsonObject* self) { QJsonObject::const_iterator ret = const_cast(self)->end(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__const_iterator* QJsonObject_ConstEnd(QJsonObject* self) { QJsonObject::const_iterator ret = const_cast(self)->constEnd(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__iterator* QJsonObject_Erase(QJsonObject* self, QJsonObject__iterator* it) { QJsonObject::iterator ret = self->erase(*it); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } QJsonObject__iterator* QJsonObject_Find(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); QJsonObject::iterator ret = self->find(key_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } QJsonObject__const_iterator* QJsonObject_FindWithKey(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); QJsonObject::const_iterator ret = const_cast(self)->find(key_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__const_iterator* QJsonObject_ConstFind(QJsonObject* self, const char* key, size_t key_Strlen) { QString key_QString = QString::fromUtf8(key, key_Strlen); QJsonObject::const_iterator ret = const_cast(self)->constFind(key_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__iterator* QJsonObject_Insert(QJsonObject* self, const char* key, size_t key_Strlen, QJsonValue* value) { QString key_QString = QString::fromUtf8(key, key_Strlen); QJsonObject::iterator ret = self->insert(key_QString, *value); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } bool QJsonObject_Empty(QJsonObject* self) { return const_cast(self)->empty(); } void QJsonObject_Delete(QJsonObject* self) { delete self; } QJsonObject__iterator* QJsonObject__iterator_new() { return new QJsonObject::iterator(); } QJsonObject__iterator* QJsonObject__iterator_new2(QJsonObject* obj, int index) { return new QJsonObject::iterator(obj, static_cast(index)); } QJsonObject__iterator* QJsonObject__iterator_new3(QJsonObject__iterator* param1) { return new QJsonObject::iterator(*param1); } void QJsonObject__iterator_Key(QJsonObject__iterator* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->key(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } QJsonValueRef* QJsonObject__iterator_Value(QJsonObject__iterator* self) { QJsonValueRef ret = const_cast(self)->value(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValueRef(ret)); } QJsonValueRef* QJsonObject__iterator_OperatorMultiply(QJsonObject__iterator* self) { QJsonValueRef ret = const_cast(self)->operator*(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValueRef(ret)); } QJsonValueRefPtr* QJsonObject__iterator_OperatorMinusGreater(QJsonObject__iterator* self) { QJsonValueRefPtr ret = const_cast(self)->operator->(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValueRefPtr(ret)); } QJsonValueRef* QJsonObject__iterator_OperatorSubscript(QJsonObject__iterator* self, int j) { QJsonValueRef ret = self->operator[](static_cast(j)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValueRef(ret)); } bool QJsonObject__iterator_OperatorEqual(QJsonObject__iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator==(*other); } bool QJsonObject__iterator_OperatorNotEqual(QJsonObject__iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator!=(*other); } bool QJsonObject__iterator_OperatorLesser(QJsonObject__iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator<(*other); } bool QJsonObject__iterator_OperatorLesserOrEqual(QJsonObject__iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator<=(*other); } bool QJsonObject__iterator_OperatorGreater(QJsonObject__iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator>(*other); } bool QJsonObject__iterator_OperatorGreaterOrEqual(QJsonObject__iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator>=(*other); } QJsonObject__iterator* QJsonObject__iterator_OperatorPlusPlus(QJsonObject__iterator* self, int param1) { QJsonObject::iterator ret = self->operator++(static_cast(param1)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } QJsonObject__iterator* QJsonObject__iterator_OperatorMinusMinus(QJsonObject__iterator* self, int param1) { QJsonObject::iterator ret = self->operator--(static_cast(param1)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } QJsonObject__iterator* QJsonObject__iterator_OperatorPlus(QJsonObject__iterator* self, int j) { QJsonObject::iterator ret = const_cast(self)->operator+(static_cast(j)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } QJsonObject__iterator* QJsonObject__iterator_OperatorMinus(QJsonObject__iterator* self, int j) { QJsonObject::iterator ret = const_cast(self)->operator-(static_cast(j)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::iterator(ret)); } int QJsonObject__iterator_OperatorMinusWithQJsonObjectiterator(QJsonObject__iterator* self, QJsonObject__iterator* j) { return const_cast(self)->operator-(*j); } bool QJsonObject__iterator_OperatorEqualWithOther(QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator==(*other); } bool QJsonObject__iterator_OperatorNotEqualWithOther(QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator!=(*other); } bool QJsonObject__iterator_OperatorLesserWithOther(QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator<(*other); } bool QJsonObject__iterator_OperatorLesserOrEqualWithOther(QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator<=(*other); } bool QJsonObject__iterator_OperatorGreaterWithOther(QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator>(*other); } bool QJsonObject__iterator_OperatorGreaterOrEqualWithOther(QJsonObject__iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator>=(*other); } void QJsonObject__iterator_Delete(QJsonObject__iterator* self) { delete self; } QJsonObject__const_iterator* QJsonObject__const_iterator_new() { return new QJsonObject::const_iterator(); } QJsonObject__const_iterator* QJsonObject__const_iterator_new2(QJsonObject* obj, int index) { return new QJsonObject::const_iterator(obj, static_cast(index)); } QJsonObject__const_iterator* QJsonObject__const_iterator_new3(QJsonObject__iterator* other) { return new QJsonObject::const_iterator(*other); } QJsonObject__const_iterator* QJsonObject__const_iterator_new4(QJsonObject__const_iterator* param1) { return new QJsonObject::const_iterator(*param1); } void QJsonObject__const_iterator_Key(QJsonObject__const_iterator* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->key(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } QJsonValue* QJsonObject__const_iterator_Value(QJsonObject__const_iterator* self) { QJsonValue ret = const_cast(self)->value(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValue(ret)); } QJsonValue* QJsonObject__const_iterator_OperatorMultiply(QJsonObject__const_iterator* self) { QJsonValue ret = const_cast(self)->operator*(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValue(ret)); } QJsonValuePtr* QJsonObject__const_iterator_OperatorMinusGreater(QJsonObject__const_iterator* self) { QJsonValuePtr ret = const_cast(self)->operator->(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValuePtr(ret)); } QJsonValue* QJsonObject__const_iterator_OperatorSubscript(QJsonObject__const_iterator* self, int j) { QJsonValue ret = self->operator[](static_cast(j)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonValue(ret)); } bool QJsonObject__const_iterator_OperatorEqual(QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator==(*other); } bool QJsonObject__const_iterator_OperatorNotEqual(QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator!=(*other); } bool QJsonObject__const_iterator_OperatorLesser(QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator<(*other); } bool QJsonObject__const_iterator_OperatorLesserOrEqual(QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator<=(*other); } bool QJsonObject__const_iterator_OperatorGreater(QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator>(*other); } bool QJsonObject__const_iterator_OperatorGreaterOrEqual(QJsonObject__const_iterator* self, QJsonObject__const_iterator* other) { return const_cast(self)->operator>=(*other); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlusPlus(QJsonObject__const_iterator* self, int param1) { QJsonObject::const_iterator ret = self->operator++(static_cast(param1)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinusMinus(QJsonObject__const_iterator* self, int param1) { QJsonObject::const_iterator ret = self->operator--(static_cast(param1)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorPlus(QJsonObject__const_iterator* self, int j) { QJsonObject::const_iterator ret = const_cast(self)->operator+(static_cast(j)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } QJsonObject__const_iterator* QJsonObject__const_iterator_OperatorMinus(QJsonObject__const_iterator* self, int j) { QJsonObject::const_iterator ret = const_cast(self)->operator-(static_cast(j)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QJsonObject::const_iterator(ret)); } int QJsonObject__const_iterator_OperatorMinusWithQJsonObjectconstIterator(QJsonObject__const_iterator* self, QJsonObject__const_iterator* j) { return const_cast(self)->operator-(*j); } bool QJsonObject__const_iterator_OperatorEqualWithOther(QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator==(*other); } bool QJsonObject__const_iterator_OperatorNotEqualWithOther(QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator!=(*other); } bool QJsonObject__const_iterator_OperatorLesserWithOther(QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator<(*other); } bool QJsonObject__const_iterator_OperatorLesserOrEqualWithOther(QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator<=(*other); } bool QJsonObject__const_iterator_OperatorGreaterWithOther(QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator>(*other); } bool QJsonObject__const_iterator_OperatorGreaterOrEqualWithOther(QJsonObject__const_iterator* self, QJsonObject__iterator* other) { return const_cast(self)->operator>=(*other); } void QJsonObject__const_iterator_Delete(QJsonObject__const_iterator* self) { delete self; }