mirror of https://github.com/KLayout/klayout.git
Further cleanup of Qt6 binding of QJson... classes
This commit is contained in:
parent
76dd1b93bd
commit
e0e077d851
|
|
@ -342,6 +342,10 @@ drop_method "QQuaternion", /QQuaternion::fromRotationMatrix\(/ # GenericMatrix n
|
|||
drop_method "QJsonValue", /QJsonValue::QJsonValue\(\s*const\s+char\s*\*/ # clashes with QString version
|
||||
drop_method "QJsonValue", /QJsonValue::QJsonValue\(\s*int\s+/ # clashes with long version
|
||||
drop_method "QJsonValue", /QJsonValue::QJsonValue\(\s*QLatin1String/ # QLatin1String not available
|
||||
drop_method "QJsonValue", /::operator\[\].*QLatin1String/ # clashes with QString version
|
||||
drop_method "QJsonValue", /::operator\[\].*QStringView/ # clashes with QString version
|
||||
drop_method "QJsonDocument", /::operator\[\].*QLatin1String/ # clashes with QString version
|
||||
drop_method "QJsonDocument", /::operator\[\].*QStringView/ # clashes with QString version
|
||||
drop_method "QTextBoundaryFinder", /QTextBoundaryFinder::QTextBoundaryFinder\(.*unsigned\s+char\s*\*/ # unsigned char * not available
|
||||
drop_method "QMessageLogger", /QMessageLogger::critical\(.*catFunc/ # function pointers not supported currently
|
||||
drop_method "QMessageLogger", /QMessageLogger::debug\(.*catFunc/ # function pointers not supported currently
|
||||
|
|
@ -632,6 +636,14 @@ drop_method("QJsonArray", /::cbegin/)
|
|||
drop_method("QJsonArray", /::cend/)
|
||||
drop_method("QJsonArray", /::const_iterator.*::begin/)
|
||||
drop_method("QJsonArray", /::const_iterator.*::end/)
|
||||
drop_method("QJsonArray", /::const_iterator.*::end/)
|
||||
drop_method("QJsonArray", /QJsonValue\s+QJsonArray::operator\[\]/)
|
||||
drop_method("QJsonArray::iterator", /::operator!=.*const_iterator/)
|
||||
drop_method("QJsonArray::iterator", /::operator<.*const_iterator/)
|
||||
drop_method("QJsonArray::iterator", /::operator<=.*const_iterator/)
|
||||
drop_method("QJsonArray::iterator", /::operator==.*const_iterator/)
|
||||
drop_method("QJsonArray::iterator", /::operator>.*const_iterator/)
|
||||
drop_method("QJsonArray::iterator", /::operator>=.*const_iterator/)
|
||||
|
||||
# not compatible between Qt6.4 and 6.2 and not needed
|
||||
drop_class("QJsonObject", /const_iterator/)
|
||||
|
|
@ -639,8 +651,19 @@ drop_method("QJsonObject", /::constBegin/)
|
|||
drop_method("QJsonObject", /::constEnd/)
|
||||
drop_method("QJsonObject", /::cbegin/)
|
||||
drop_method("QJsonObject", /::cend/)
|
||||
drop_method("QJsonObject", /::constFind/)
|
||||
drop_method("QJsonObject", /::const_iterator.*::begin/)
|
||||
drop_method("QJsonObject", /::const_iterator.*::end/)
|
||||
drop_method("QJsonObject", /::const_iterator.*::find/)
|
||||
drop_method("QJsonObject", /QJsonValue\s+QJsonObject::operator\[\]/)
|
||||
drop_method("QJsonObject", /::.*QLatin1String/)
|
||||
drop_method("QJsonObject", /::.*QStringView/)
|
||||
drop_method("QJsonObject::iterator", /::operator!=.*const_iterator/)
|
||||
drop_method("QJsonObject::iterator", /::operator<.*const_iterator/)
|
||||
drop_method("QJsonObject::iterator", /::operator<=.*const_iterator/)
|
||||
drop_method("QJsonObject::iterator", /::operator==.*const_iterator/)
|
||||
drop_method("QJsonObject::iterator", /::operator>.*const_iterator/)
|
||||
drop_method("QJsonObject::iterator", /::operator>=.*const_iterator/)
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# QtGui
|
||||
|
|
|
|||
|
|
@ -431,25 +431,6 @@ static void _call_f_operator_index__1442 (const qt_gsi::GenericMethod * /*decl*/
|
|||
}
|
||||
|
||||
|
||||
// QJsonValue QJsonArray::operator[](qsizetype i)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("i");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonValue > ((QJsonValue)((QJsonArray *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// void QJsonArray::pop_back()
|
||||
|
||||
|
||||
|
|
@ -752,7 +733,6 @@ static gsi::Methods methods_QJsonArray () {
|
|||
methods += new qt_gsi::GenericMethod ("<<", "@brief Method QJsonArray &QJsonArray::operator<<(const QJsonValue &v)\n", false, &_init_f_operator_lt__lt__2313, &_call_f_operator_lt__lt__2313);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonArray::operator==(const QJsonArray &other)\n", true, &_init_f_operator_eq__eq__c2315, &_call_f_operator_eq__eq__c2315);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValueRef QJsonArray::operator[](qsizetype i)\n", false, &_init_f_operator_index__1442, &_call_f_operator_index__1442);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValue QJsonArray::operator[](qsizetype i)\n", true, &_init_f_operator_index__c1442, &_call_f_operator_index__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("pop_back", "@brief Method void QJsonArray::pop_back()\n", false, &_init_f_pop_back_0, &_call_f_pop_back_0);
|
||||
methods += new qt_gsi::GenericMethod ("pop_front", "@brief Method void QJsonArray::pop_front()\n", false, &_init_f_pop_front_0, &_call_f_pop_front_0);
|
||||
methods += new qt_gsi::GenericMethod ("prepend", "@brief Method void QJsonArray::prepend(const QJsonValue &value)\n", false, &_init_f_prepend_2313, &_call_f_prepend_2313);
|
||||
|
|
|
|||
|
|
@ -1,501 +0,0 @@
|
|||
|
||||
/*
|
||||
|
||||
KLayout Layout Viewer
|
||||
Copyright (C) 2006-2022 Matthias Koefferlein
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file gsiDeclQJsonArray_Const_iterator.cc
|
||||
*
|
||||
* DO NOT EDIT THIS FILE.
|
||||
* This file has been created automatically
|
||||
*/
|
||||
|
||||
#include <QJsonArray>
|
||||
#include <QJsonArray>
|
||||
#include <QJsonValueRef>
|
||||
#include "gsiQt.h"
|
||||
#include "gsiQtCoreCommon.h"
|
||||
#include <memory>
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// class QJsonArray::const_iterator
|
||||
|
||||
// Constructor QJsonArray::const_iterator::const_iterator()
|
||||
|
||||
|
||||
static void _init_ctor_QJsonArray_Const_iterator_0 (qt_gsi::GenericStaticMethod *decl)
|
||||
{
|
||||
decl->set_return_new<QJsonArray::const_iterator> ();
|
||||
}
|
||||
|
||||
static void _call_ctor_QJsonArray_Const_iterator_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<QJsonArray::const_iterator *> (new QJsonArray::const_iterator ());
|
||||
}
|
||||
|
||||
|
||||
// Constructor QJsonArray::const_iterator::const_iterator(const QJsonArray *array, qsizetype index)
|
||||
|
||||
|
||||
static void _init_ctor_QJsonArray_Const_iterator_3653 (qt_gsi::GenericStaticMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("array");
|
||||
decl->add_arg<const QJsonArray * > (argspec_0);
|
||||
static gsi::ArgSpecBase argspec_1 ("index");
|
||||
decl->add_arg<qsizetype > (argspec_1);
|
||||
decl->set_return_new<QJsonArray::const_iterator> ();
|
||||
}
|
||||
|
||||
static void _call_ctor_QJsonArray_Const_iterator_3653 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray *arg1 = gsi::arg_reader<const QJsonArray * >() (args, heap);
|
||||
qsizetype arg2 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator *> (new QJsonArray::const_iterator (arg1, arg2));
|
||||
}
|
||||
|
||||
|
||||
// Constructor QJsonArray::const_iterator::const_iterator(const QJsonArray::iterator &o)
|
||||
|
||||
|
||||
static void _init_ctor_QJsonArray_Const_iterator_3305 (qt_gsi::GenericStaticMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("o");
|
||||
decl->add_arg<const QJsonArray::iterator & > (argspec_0);
|
||||
decl->set_return_new<QJsonArray::const_iterator> ();
|
||||
}
|
||||
|
||||
static void _call_ctor_QJsonArray_Const_iterator_3305 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::iterator &arg1 = gsi::arg_reader<const QJsonArray::iterator & >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator *> (new QJsonArray::const_iterator (arg1));
|
||||
}
|
||||
|
||||
|
||||
// Constructor QJsonArray::const_iterator::const_iterator(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_ctor_QJsonArray_Const_iterator_3951 (qt_gsi::GenericStaticMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return_new<QJsonArray::const_iterator> ();
|
||||
}
|
||||
|
||||
static void _call_ctor_QJsonArray_Const_iterator_3951 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator *> (new QJsonArray::const_iterator (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::const_iterator::operator!=(const QJsonArray::const_iterator &o)
|
||||
|
||||
|
||||
static void _init_f_operator_excl__eq__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("o");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_excl__eq__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::const_iterator *)cls)->operator!= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValueRef QJsonArray::const_iterator::operator*()
|
||||
|
||||
|
||||
static void _init_f_operator_star__c0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<const QJsonValueRef > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_star__c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<const QJsonValueRef > ((const QJsonValueRef)((QJsonArray::const_iterator *)cls)->operator* ());
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator QJsonArray::const_iterator::operator+(qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_plus__c1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonArray::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_plus__c1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator > ((QJsonArray::const_iterator)((QJsonArray::const_iterator *)cls)->operator+ (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator &QJsonArray::const_iterator::operator++()
|
||||
|
||||
|
||||
static void _init_f_operator_plus__plus__0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<QJsonArray::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_plus__plus__0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<QJsonArray::const_iterator & > ((QJsonArray::const_iterator &)((QJsonArray::const_iterator *)cls)->operator++ ());
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator QJsonArray::const_iterator::operator++(int)
|
||||
|
||||
|
||||
static void _init_f_operator_plus__plus__767 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("arg1");
|
||||
decl->add_arg<int > (argspec_0);
|
||||
decl->set_return<QJsonArray::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
int arg1 = gsi::arg_reader<int >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator > ((QJsonArray::const_iterator)((QJsonArray::const_iterator *)cls)->operator++ (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator &QJsonArray::const_iterator::operator+=(qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_plus__eq__1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonArray::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_plus__eq__1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator & > ((QJsonArray::const_iterator &)((QJsonArray::const_iterator *)cls)->operator+= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator QJsonArray::const_iterator::operator-(qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_minus__c1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonArray::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__c1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator > ((QJsonArray::const_iterator)((QJsonArray::const_iterator *)cls)->operator- (arg1));
|
||||
}
|
||||
|
||||
|
||||
// qsizetype QJsonArray::const_iterator::operator-(QJsonArray::const_iterator j)
|
||||
|
||||
|
||||
static void _init_f_operator_minus__c3074 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<QJsonArray::const_iterator > (argspec_0);
|
||||
decl->set_return<qsizetype > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__c3074 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QJsonArray::const_iterator arg1 = gsi::arg_reader<QJsonArray::const_iterator >() (args, heap);
|
||||
ret.write<qsizetype > ((qsizetype)((QJsonArray::const_iterator *)cls)->operator- (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator &QJsonArray::const_iterator::operator--()
|
||||
|
||||
|
||||
static void _init_f_operator_minus__minus__0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<QJsonArray::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__minus__0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<QJsonArray::const_iterator & > ((QJsonArray::const_iterator &)((QJsonArray::const_iterator *)cls)->operator-- ());
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator QJsonArray::const_iterator::operator--(int)
|
||||
|
||||
|
||||
static void _init_f_operator_minus__minus__767 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("arg1");
|
||||
decl->add_arg<int > (argspec_0);
|
||||
decl->set_return<QJsonArray::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
int arg1 = gsi::arg_reader<int >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator > ((QJsonArray::const_iterator)((QJsonArray::const_iterator *)cls)->operator-- (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator &QJsonArray::const_iterator::operator-=(qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_minus__eq__1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonArray::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__eq__1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator & > ((QJsonArray::const_iterator &)((QJsonArray::const_iterator *)cls)->operator-= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValueRef *QJsonArray::const_iterator::operator->()
|
||||
|
||||
|
||||
static void _init_f_operator_minus__gt__c0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<const QJsonValueRef * > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__gt__c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<const QJsonValueRef * > ((const QJsonValueRef *)((QJsonArray::const_iterator *)cls)->operator-> ());
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::const_iterator::operator<(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::const_iterator *)cls)->operator< (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::const_iterator::operator<=(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__eq__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__eq__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::const_iterator *)cls)->operator<= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::const_iterator &QJsonArray::const_iterator::operator=(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_eq__3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<QJsonArray::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_eq__3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<QJsonArray::const_iterator & > ((QJsonArray::const_iterator &)((QJsonArray::const_iterator *)cls)->operator= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::const_iterator::operator==(const QJsonArray::const_iterator &o)
|
||||
|
||||
|
||||
static void _init_f_operator_eq__eq__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("o");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_eq__eq__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::const_iterator *)cls)->operator== (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::const_iterator::operator>(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::const_iterator *)cls)->operator> (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::const_iterator::operator>=(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__eq__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__eq__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::const_iterator *)cls)->operator>= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValueRef QJsonArray::const_iterator::operator[](qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonValueRef > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonValueRef > ((QJsonValueRef)((QJsonArray::const_iterator *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
|
||||
namespace gsi
|
||||
{
|
||||
|
||||
static gsi::Methods methods_QJsonArray_Const_iterator () {
|
||||
gsi::Methods methods;
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonArray::const_iterator::const_iterator()\nThis method creates an object of class QJsonArray::const_iterator.", &_init_ctor_QJsonArray_Const_iterator_0, &_call_ctor_QJsonArray_Const_iterator_0);
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonArray::const_iterator::const_iterator(const QJsonArray *array, qsizetype index)\nThis method creates an object of class QJsonArray::const_iterator.", &_init_ctor_QJsonArray_Const_iterator_3653, &_call_ctor_QJsonArray_Const_iterator_3653);
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonArray::const_iterator::const_iterator(const QJsonArray::iterator &o)\nThis method creates an object of class QJsonArray::const_iterator.", &_init_ctor_QJsonArray_Const_iterator_3305, &_call_ctor_QJsonArray_Const_iterator_3305);
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonArray::const_iterator::const_iterator(const QJsonArray::const_iterator &other)\nThis method creates an object of class QJsonArray::const_iterator.", &_init_ctor_QJsonArray_Const_iterator_3951, &_call_ctor_QJsonArray_Const_iterator_3951);
|
||||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonArray::const_iterator::operator!=(const QJsonArray::const_iterator &o)\n", true, &_init_f_operator_excl__eq__c3951, &_call_f_operator_excl__eq__c3951);
|
||||
methods += new qt_gsi::GenericMethod ("*", "@brief Method const QJsonValueRef QJsonArray::const_iterator::operator*()\n", true, &_init_f_operator_star__c0, &_call_f_operator_star__c0);
|
||||
methods += new qt_gsi::GenericMethod ("+", "@brief Method QJsonArray::const_iterator QJsonArray::const_iterator::operator+(qsizetype j)\n", true, &_init_f_operator_plus__c1442, &_call_f_operator_plus__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("++", "@brief Method QJsonArray::const_iterator &QJsonArray::const_iterator::operator++()\n", false, &_init_f_operator_plus__plus__0, &_call_f_operator_plus__plus__0);
|
||||
methods += new qt_gsi::GenericMethod ("++", "@brief Method QJsonArray::const_iterator QJsonArray::const_iterator::operator++(int)\n", false, &_init_f_operator_plus__plus__767, &_call_f_operator_plus__plus__767);
|
||||
methods += new qt_gsi::GenericMethod ("+=", "@brief Method QJsonArray::const_iterator &QJsonArray::const_iterator::operator+=(qsizetype j)\n", false, &_init_f_operator_plus__eq__1442, &_call_f_operator_plus__eq__1442);
|
||||
methods += new qt_gsi::GenericMethod ("-", "@brief Method QJsonArray::const_iterator QJsonArray::const_iterator::operator-(qsizetype j)\n", true, &_init_f_operator_minus__c1442, &_call_f_operator_minus__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("-", "@brief Method qsizetype QJsonArray::const_iterator::operator-(QJsonArray::const_iterator j)\n", true, &_init_f_operator_minus__c3074, &_call_f_operator_minus__c3074);
|
||||
methods += new qt_gsi::GenericMethod ("--", "@brief Method QJsonArray::const_iterator &QJsonArray::const_iterator::operator--()\n", false, &_init_f_operator_minus__minus__0, &_call_f_operator_minus__minus__0);
|
||||
methods += new qt_gsi::GenericMethod ("--", "@brief Method QJsonArray::const_iterator QJsonArray::const_iterator::operator--(int)\n", false, &_init_f_operator_minus__minus__767, &_call_f_operator_minus__minus__767);
|
||||
methods += new qt_gsi::GenericMethod ("-=", "@brief Method QJsonArray::const_iterator &QJsonArray::const_iterator::operator-=(qsizetype j)\n", false, &_init_f_operator_minus__eq__1442, &_call_f_operator_minus__eq__1442);
|
||||
methods += new qt_gsi::GenericMethod ("->", "@brief Method const QJsonValueRef *QJsonArray::const_iterator::operator->()\n", true, &_init_f_operator_minus__gt__c0, &_call_f_operator_minus__gt__c0);
|
||||
methods += new qt_gsi::GenericMethod ("<", "@brief Method bool QJsonArray::const_iterator::operator<(const QJsonArray::const_iterator &other)\n", true, &_init_f_operator_lt__c3951, &_call_f_operator_lt__c3951);
|
||||
methods += new qt_gsi::GenericMethod ("<=", "@brief Method bool QJsonArray::const_iterator::operator<=(const QJsonArray::const_iterator &other)\n", true, &_init_f_operator_lt__eq__c3951, &_call_f_operator_lt__eq__c3951);
|
||||
methods += new qt_gsi::GenericMethod ("assign", "@brief Method QJsonArray::const_iterator &QJsonArray::const_iterator::operator=(const QJsonArray::const_iterator &other)\n", false, &_init_f_operator_eq__3951, &_call_f_operator_eq__3951);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonArray::const_iterator::operator==(const QJsonArray::const_iterator &o)\n", true, &_init_f_operator_eq__eq__c3951, &_call_f_operator_eq__eq__c3951);
|
||||
methods += new qt_gsi::GenericMethod (">", "@brief Method bool QJsonArray::const_iterator::operator>(const QJsonArray::const_iterator &other)\n", true, &_init_f_operator_gt__c3951, &_call_f_operator_gt__c3951);
|
||||
methods += new qt_gsi::GenericMethod (">=", "@brief Method bool QJsonArray::const_iterator::operator>=(const QJsonArray::const_iterator &other)\n", true, &_init_f_operator_gt__eq__c3951, &_call_f_operator_gt__eq__c3951);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValueRef QJsonArray::const_iterator::operator[](qsizetype j)\n", true, &_init_f_operator_index__c1442, &_call_f_operator_index__c1442);
|
||||
return methods;
|
||||
}
|
||||
|
||||
gsi::Class<QJsonArray::const_iterator> decl_QJsonArray_Const_iterator ("QtCore", "QJsonArray_Const_iterator",
|
||||
methods_QJsonArray_Const_iterator (),
|
||||
"@qt\n@brief Binding of QJsonArray::const_iterator");
|
||||
|
||||
gsi::ClassExt<QJsonArray> decl_QJsonArray_Const_iterator_as_child (decl_QJsonArray_Const_iterator, "Const_iterator");
|
||||
|
||||
GSI_QTCORE_PUBLIC gsi::Class<QJsonArray::const_iterator> &qtdecl_QJsonArray_Const_iterator () { return decl_QJsonArray_Const_iterator; }
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -112,25 +112,6 @@ static void _call_f_operator_excl__eq__c3305 (const qt_gsi::GenericMethod * /*de
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator!=(const QJsonArray::const_iterator &o)
|
||||
|
||||
|
||||
static void _init_f_operator_excl__eq__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("o");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_excl__eq__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::iterator *)cls)->operator!= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValueRef QJsonArray::iterator::operator*()
|
||||
|
||||
|
||||
|
|
@ -343,25 +324,6 @@ static void _call_f_operator_lt__c3305 (const qt_gsi::GenericMethod * /*decl*/,
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator<(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::iterator *)cls)->operator< (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator<=(const QJsonArray::iterator &other)
|
||||
|
||||
|
||||
|
|
@ -381,25 +343,6 @@ static void _call_f_operator_lt__eq__c3305 (const qt_gsi::GenericMethod * /*decl
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator<=(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__eq__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__eq__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::iterator *)cls)->operator<= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonArray::iterator &QJsonArray::iterator::operator=(const QJsonArray::iterator &other)
|
||||
|
||||
|
||||
|
|
@ -438,25 +381,6 @@ static void _call_f_operator_eq__eq__c3305 (const qt_gsi::GenericMethod * /*decl
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator==(const QJsonArray::const_iterator &o)
|
||||
|
||||
|
||||
static void _init_f_operator_eq__eq__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("o");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_eq__eq__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::iterator *)cls)->operator== (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator>(const QJsonArray::iterator &other)
|
||||
|
||||
|
||||
|
|
@ -476,25 +400,6 @@ static void _call_f_operator_gt__c3305 (const qt_gsi::GenericMethod * /*decl*/,
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator>(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::iterator *)cls)->operator> (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator>=(const QJsonArray::iterator &other)
|
||||
|
||||
|
||||
|
|
@ -514,25 +419,6 @@ static void _call_f_operator_gt__eq__c3305 (const qt_gsi::GenericMethod * /*decl
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonArray::iterator::operator>=(const QJsonArray::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__eq__c3951 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonArray::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__eq__c3951 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonArray::const_iterator &arg1 = gsi::arg_reader<const QJsonArray::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonArray::iterator *)cls)->operator>= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValueRef QJsonArray::iterator::operator[](qsizetype j)
|
||||
|
||||
|
||||
|
|
@ -562,7 +448,6 @@ static gsi::Methods methods_QJsonArray_Iterator () {
|
|||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonArray::iterator::iterator(QJsonArray *array, qsizetype index)\nThis method creates an object of class QJsonArray::iterator.", &_init_ctor_QJsonArray_Iterator_2958, &_call_ctor_QJsonArray_Iterator_2958);
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonArray::iterator::iterator(const QJsonArray::iterator &other)\nThis method creates an object of class QJsonArray::iterator.", &_init_ctor_QJsonArray_Iterator_3305, &_call_ctor_QJsonArray_Iterator_3305);
|
||||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonArray::iterator::operator!=(const QJsonArray::iterator &o)\n", true, &_init_f_operator_excl__eq__c3305, &_call_f_operator_excl__eq__c3305);
|
||||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonArray::iterator::operator!=(const QJsonArray::const_iterator &o)\n", true, &_init_f_operator_excl__eq__c3951, &_call_f_operator_excl__eq__c3951);
|
||||
methods += new qt_gsi::GenericMethod ("*", "@brief Method QJsonValueRef QJsonArray::iterator::operator*()\n", true, &_init_f_operator_star__c0, &_call_f_operator_star__c0);
|
||||
methods += new qt_gsi::GenericMethod ("+", "@brief Method QJsonArray::iterator QJsonArray::iterator::operator+(qsizetype j)\n", true, &_init_f_operator_plus__c1442, &_call_f_operator_plus__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("++", "@brief Method QJsonArray::iterator &QJsonArray::iterator::operator++()\n", false, &_init_f_operator_plus__plus__0, &_call_f_operator_plus__plus__0);
|
||||
|
|
@ -575,16 +460,11 @@ static gsi::Methods methods_QJsonArray_Iterator () {
|
|||
methods += new qt_gsi::GenericMethod ("-=", "@brief Method QJsonArray::iterator &QJsonArray::iterator::operator-=(qsizetype j)\n", false, &_init_f_operator_minus__eq__1442, &_call_f_operator_minus__eq__1442);
|
||||
methods += new qt_gsi::GenericMethod ("->", "@brief Method QJsonValueRef *QJsonArray::iterator::operator->()\n", true, &_init_f_operator_minus__gt__c0, &_call_f_operator_minus__gt__c0);
|
||||
methods += new qt_gsi::GenericMethod ("<", "@brief Method bool QJsonArray::iterator::operator<(const QJsonArray::iterator &other)\n", true, &_init_f_operator_lt__c3305, &_call_f_operator_lt__c3305);
|
||||
methods += new qt_gsi::GenericMethod ("<", "@brief Method bool QJsonArray::iterator::operator<(const QJsonArray::const_iterator &other)\n", true, &_init_f_operator_lt__c3951, &_call_f_operator_lt__c3951);
|
||||
methods += new qt_gsi::GenericMethod ("<=", "@brief Method bool QJsonArray::iterator::operator<=(const QJsonArray::iterator &other)\n", true, &_init_f_operator_lt__eq__c3305, &_call_f_operator_lt__eq__c3305);
|
||||
methods += new qt_gsi::GenericMethod ("<=", "@brief Method bool QJsonArray::iterator::operator<=(const QJsonArray::const_iterator &other)\n", true, &_init_f_operator_lt__eq__c3951, &_call_f_operator_lt__eq__c3951);
|
||||
methods += new qt_gsi::GenericMethod ("assign", "@brief Method QJsonArray::iterator &QJsonArray::iterator::operator=(const QJsonArray::iterator &other)\n", false, &_init_f_operator_eq__3305, &_call_f_operator_eq__3305);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonArray::iterator::operator==(const QJsonArray::iterator &o)\n", true, &_init_f_operator_eq__eq__c3305, &_call_f_operator_eq__eq__c3305);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonArray::iterator::operator==(const QJsonArray::const_iterator &o)\n", true, &_init_f_operator_eq__eq__c3951, &_call_f_operator_eq__eq__c3951);
|
||||
methods += new qt_gsi::GenericMethod (">", "@brief Method bool QJsonArray::iterator::operator>(const QJsonArray::iterator &other)\n", true, &_init_f_operator_gt__c3305, &_call_f_operator_gt__c3305);
|
||||
methods += new qt_gsi::GenericMethod (">", "@brief Method bool QJsonArray::iterator::operator>(const QJsonArray::const_iterator &other)\n", true, &_init_f_operator_gt__c3951, &_call_f_operator_gt__c3951);
|
||||
methods += new qt_gsi::GenericMethod (">=", "@brief Method bool QJsonArray::iterator::operator>=(const QJsonArray::iterator &other)\n", true, &_init_f_operator_gt__eq__c3305, &_call_f_operator_gt__eq__c3305);
|
||||
methods += new qt_gsi::GenericMethod (">=", "@brief Method bool QJsonArray::iterator::operator>=(const QJsonArray::const_iterator &other)\n", true, &_init_f_operator_gt__eq__c3951, &_call_f_operator_gt__eq__c3951);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValueRef QJsonArray::iterator::operator[](qsizetype j)\n", true, &_init_f_operator_index__c1442, &_call_f_operator_index__c1442);
|
||||
return methods;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -277,44 +277,6 @@ static void _call_f_operator_index__c2025 (const qt_gsi::GenericMethod * /*decl*
|
|||
}
|
||||
|
||||
|
||||
// const QJsonValue QJsonDocument::operator[](QStringView key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<const QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<const QJsonValue > ((const QJsonValue)((QJsonDocument *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValue QJsonDocument::operator[](QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<const QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<const QJsonValue > ((const QJsonValue)((QJsonDocument *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValue QJsonDocument::operator[](qsizetype i)
|
||||
|
||||
|
||||
|
|
@ -489,8 +451,6 @@ static gsi::Methods methods_QJsonDocument () {
|
|||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonDocument::operator!=(const QJsonDocument &other)\n", true, &_init_f_operator_excl__eq__c2635, &_call_f_operator_excl__eq__c2635);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonDocument::operator==(const QJsonDocument &other)\n", true, &_init_f_operator_eq__eq__c2635, &_call_f_operator_eq__eq__c2635);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValue QJsonDocument::operator[](const QString &key)\n", true, &_init_f_operator_index__c2025, &_call_f_operator_index__c2025);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValue QJsonDocument::operator[](QStringView key)\n", true, &_init_f_operator_index__c1559, &_call_f_operator_index__c1559);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValue QJsonDocument::operator[](QLatin1String key)\n", true, &_init_f_operator_index__c1701, &_call_f_operator_index__c1701);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValue QJsonDocument::operator[](qsizetype i)\n", true, &_init_f_operator_index__c1442, &_call_f_operator_index__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("setArray|array=", "@brief Method void QJsonDocument::setArray(const QJsonArray &array)\n", false, &_init_f_setArray_2315, &_call_f_setArray_2315);
|
||||
methods += new qt_gsi::GenericMethod ("setObject", "@brief Method void QJsonDocument::setObject(const QJsonObject &object)\n", false, &_init_f_setObject_2403, &_call_f_setObject_2403);
|
||||
|
|
|
|||
|
|
@ -86,63 +86,6 @@ static void _call_f_begin_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls,
|
|||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::constFind(const QString &key)
|
||||
|
||||
|
||||
static void _init_f_constFind_c2025 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<const QString & > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_constFind_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QString &arg1 = gsi::arg_reader<const QString & >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject *)cls)->constFind (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::constFind(QStringView key)
|
||||
|
||||
|
||||
static void _init_f_constFind_c1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_constFind_c1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject *)cls)->constFind (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::constFind(QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_constFind_c1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_constFind_c1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject *)cls)->constFind (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::contains(const QString &key)
|
||||
|
||||
|
||||
|
|
@ -162,44 +105,6 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonObject::contains(QStringView key)
|
||||
|
||||
|
||||
static void _init_f_contains_c1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_contains_c1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject *)cls)->contains (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::contains(QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_contains_c1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_contains_c1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject *)cls)->contains (arg1));
|
||||
}
|
||||
|
||||
|
||||
// qsizetype QJsonObject::count()
|
||||
|
||||
|
||||
|
|
@ -283,101 +188,6 @@ static void _call_f_find_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls
|
|||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::find(const QString &key)
|
||||
|
||||
|
||||
static void _init_f_find_c2025 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<const QString & > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_find_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QString &arg1 = gsi::arg_reader<const QString & >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject *)cls)->find (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::iterator QJsonObject::find(QStringView key)
|
||||
|
||||
|
||||
static void _init_f_find_1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<QJsonObject::iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_find_1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<QJsonObject::iterator > ((QJsonObject::iterator)((QJsonObject *)cls)->find (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::iterator QJsonObject::find(QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_find_1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<QJsonObject::iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_find_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<QJsonObject::iterator > ((QJsonObject::iterator)((QJsonObject *)cls)->find (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::find(QStringView key)
|
||||
|
||||
|
||||
static void _init_f_find_c1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_find_c1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject *)cls)->find (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::find(QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_find_c1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_find_c1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject *)cls)->find (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::iterator QJsonObject::insert(const QString &key, const QJsonValue &value)
|
||||
|
||||
|
||||
|
|
@ -400,50 +210,6 @@ static void _call_f_insert_4230 (const qt_gsi::GenericMethod * /*decl*/, void *c
|
|||
}
|
||||
|
||||
|
||||
// QJsonObject::iterator QJsonObject::insert(QStringView key, const QJsonValue &value)
|
||||
|
||||
|
||||
static void _init_f_insert_3764 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
static gsi::ArgSpecBase argspec_1 ("value");
|
||||
decl->add_arg<const QJsonValue & > (argspec_1);
|
||||
decl->set_return<QJsonObject::iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_insert_3764 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
const QJsonValue &arg2 = gsi::arg_reader<const QJsonValue & >() (args, heap);
|
||||
ret.write<QJsonObject::iterator > ((QJsonObject::iterator)((QJsonObject *)cls)->insert (arg1, arg2));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::iterator QJsonObject::insert(QLatin1String key, const QJsonValue &value)
|
||||
|
||||
|
||||
static void _init_f_insert_3906 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
static gsi::ArgSpecBase argspec_1 ("value");
|
||||
decl->add_arg<const QJsonValue & > (argspec_1);
|
||||
decl->set_return<QJsonObject::iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_insert_3906 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
const QJsonValue &arg2 = gsi::arg_reader<const QJsonValue & >() (args, heap);
|
||||
ret.write<QJsonObject::iterator > ((QJsonObject::iterator)((QJsonObject *)cls)->insert (arg1, arg2));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::isEmpty()
|
||||
|
||||
|
||||
|
|
@ -546,25 +312,6 @@ static void _call_f_operator_eq__eq__c2403 (const qt_gsi::GenericMethod * /*decl
|
|||
}
|
||||
|
||||
|
||||
// QJsonValue QJsonObject::operator[](const QString &key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c2025 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<const QString & > (argspec_0);
|
||||
decl->set_return<QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QString &arg1 = gsi::arg_reader<const QString & >() (args, heap);
|
||||
ret.write<QJsonValue > ((QJsonValue)((QJsonObject *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValueRef QJsonObject::operator[](const QString &key)
|
||||
|
||||
|
||||
|
|
@ -584,82 +331,6 @@ static void _call_f_operator_index__2025 (const qt_gsi::GenericMethod * /*decl*/
|
|||
}
|
||||
|
||||
|
||||
// QJsonValue QJsonObject::operator[](QStringView key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<QJsonValue > ((QJsonValue)((QJsonObject *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValue QJsonObject::operator[](QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<QJsonValue > ((QJsonValue)((QJsonObject *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValueRef QJsonObject::operator[](QStringView key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<QJsonValueRef > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<QJsonValueRef > ((QJsonValueRef)((QJsonObject *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValueRef QJsonObject::operator[](QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<QJsonValueRef > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<QJsonValueRef > ((QJsonValueRef)((QJsonObject *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// void QJsonObject::remove(const QString &key)
|
||||
|
||||
|
||||
|
|
@ -680,46 +351,6 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c
|
|||
}
|
||||
|
||||
|
||||
// void QJsonObject::remove(QStringView key)
|
||||
|
||||
|
||||
static void _init_f_remove_1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<void > ();
|
||||
}
|
||||
|
||||
static void _call_f_remove_1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
__SUPPRESS_UNUSED_WARNING(ret);
|
||||
((QJsonObject *)cls)->remove (arg1);
|
||||
}
|
||||
|
||||
|
||||
// void QJsonObject::remove(QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_remove_1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<void > ();
|
||||
}
|
||||
|
||||
static void _call_f_remove_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
__SUPPRESS_UNUSED_WARNING(ret);
|
||||
((QJsonObject *)cls)->remove (arg1);
|
||||
}
|
||||
|
||||
|
||||
// qsizetype QJsonObject::size()
|
||||
|
||||
|
||||
|
|
@ -774,44 +405,6 @@ static void _call_f_take_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls
|
|||
}
|
||||
|
||||
|
||||
// QJsonValue QJsonObject::take(QStringView key)
|
||||
|
||||
|
||||
static void _init_f_take_1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_take_1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<QJsonValue > ((QJsonValue)((QJsonObject *)cls)->take (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValue QJsonObject::take(QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_take_1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_take_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<QJsonValue > ((QJsonValue)((QJsonObject *)cls)->take (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QVariantHash QJsonObject::toVariantHash()
|
||||
|
||||
|
||||
|
|
@ -861,44 +454,6 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c
|
|||
}
|
||||
|
||||
|
||||
// QJsonValue QJsonObject::value(QStringView key)
|
||||
|
||||
|
||||
static void _init_f_value_c1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_value_c1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<QJsonValue > ((QJsonValue)((QJsonObject *)cls)->value (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValue QJsonObject::value(QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_value_c1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_value_c1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<QJsonValue > ((QJsonValue)((QJsonObject *)cls)->value (arg1));
|
||||
}
|
||||
|
||||
|
||||
// static QJsonObject QJsonObject::fromVariantHash(const QVariantHash &map)
|
||||
|
||||
|
||||
|
|
@ -946,50 +501,27 @@ static gsi::Methods methods_QJsonObject () {
|
|||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonObject::QJsonObject()\nThis method creates an object of class QJsonObject.", &_init_ctor_QJsonObject_0, &_call_ctor_QJsonObject_0);
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonObject::QJsonObject(const QJsonObject &other)\nThis method creates an object of class QJsonObject.", &_init_ctor_QJsonObject_2403, &_call_ctor_QJsonObject_2403);
|
||||
methods += new qt_gsi::GenericMethod ("begin", "@brief Method QJsonObject::iterator QJsonObject::begin()\n", false, &_init_f_begin_0, &_call_f_begin_0);
|
||||
methods += new qt_gsi::GenericMethod ("constFind", "@brief Method QJsonObject::const_iterator QJsonObject::constFind(const QString &key)\n", true, &_init_f_constFind_c2025, &_call_f_constFind_c2025);
|
||||
methods += new qt_gsi::GenericMethod ("constFind", "@brief Method QJsonObject::const_iterator QJsonObject::constFind(QStringView key)\n", true, &_init_f_constFind_c1559, &_call_f_constFind_c1559);
|
||||
methods += new qt_gsi::GenericMethod ("constFind", "@brief Method QJsonObject::const_iterator QJsonObject::constFind(QLatin1String key)\n", true, &_init_f_constFind_c1701, &_call_f_constFind_c1701);
|
||||
methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QJsonObject::contains(const QString &key)\n", true, &_init_f_contains_c2025, &_call_f_contains_c2025);
|
||||
methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QJsonObject::contains(QStringView key)\n", true, &_init_f_contains_c1559, &_call_f_contains_c1559);
|
||||
methods += new qt_gsi::GenericMethod ("contains", "@brief Method bool QJsonObject::contains(QLatin1String key)\n", true, &_init_f_contains_c1701, &_call_f_contains_c1701);
|
||||
methods += new qt_gsi::GenericMethod ("count", "@brief Method qsizetype QJsonObject::count()\n", true, &_init_f_count_c0, &_call_f_count_c0);
|
||||
methods += new qt_gsi::GenericMethod ("empty", "@brief Method bool QJsonObject::empty()\n", true, &_init_f_empty_c0, &_call_f_empty_c0);
|
||||
methods += new qt_gsi::GenericMethod ("end", "@brief Method QJsonObject::iterator QJsonObject::end()\n", false, &_init_f_end_0, &_call_f_end_0);
|
||||
methods += new qt_gsi::GenericMethod ("erase", "@brief Method QJsonObject::iterator QJsonObject::erase(QJsonObject::iterator it)\n", false, &_init_f_erase_2516, &_call_f_erase_2516);
|
||||
methods += new qt_gsi::GenericMethod ("find", "@brief Method QJsonObject::iterator QJsonObject::find(const QString &key)\n", false, &_init_f_find_2025, &_call_f_find_2025);
|
||||
methods += new qt_gsi::GenericMethod ("find", "@brief Method QJsonObject::const_iterator QJsonObject::find(const QString &key)\n", true, &_init_f_find_c2025, &_call_f_find_c2025);
|
||||
methods += new qt_gsi::GenericMethod ("find", "@brief Method QJsonObject::iterator QJsonObject::find(QStringView key)\n", false, &_init_f_find_1559, &_call_f_find_1559);
|
||||
methods += new qt_gsi::GenericMethod ("find", "@brief Method QJsonObject::iterator QJsonObject::find(QLatin1String key)\n", false, &_init_f_find_1701, &_call_f_find_1701);
|
||||
methods += new qt_gsi::GenericMethod ("find", "@brief Method QJsonObject::const_iterator QJsonObject::find(QStringView key)\n", true, &_init_f_find_c1559, &_call_f_find_c1559);
|
||||
methods += new qt_gsi::GenericMethod ("find", "@brief Method QJsonObject::const_iterator QJsonObject::find(QLatin1String key)\n", true, &_init_f_find_c1701, &_call_f_find_c1701);
|
||||
methods += new qt_gsi::GenericMethod ("insert", "@brief Method QJsonObject::iterator QJsonObject::insert(const QString &key, const QJsonValue &value)\n", false, &_init_f_insert_4230, &_call_f_insert_4230);
|
||||
methods += new qt_gsi::GenericMethod ("insert", "@brief Method QJsonObject::iterator QJsonObject::insert(QStringView key, const QJsonValue &value)\n", false, &_init_f_insert_3764, &_call_f_insert_3764);
|
||||
methods += new qt_gsi::GenericMethod ("insert", "@brief Method QJsonObject::iterator QJsonObject::insert(QLatin1String key, const QJsonValue &value)\n", false, &_init_f_insert_3906, &_call_f_insert_3906);
|
||||
methods += new qt_gsi::GenericMethod ("isEmpty?", "@brief Method bool QJsonObject::isEmpty()\n", true, &_init_f_isEmpty_c0, &_call_f_isEmpty_c0);
|
||||
methods += new qt_gsi::GenericMethod ("keys", "@brief Method QStringList QJsonObject::keys()\n", true, &_init_f_keys_c0, &_call_f_keys_c0);
|
||||
methods += new qt_gsi::GenericMethod ("length", "@brief Method qsizetype QJsonObject::length()\n", true, &_init_f_length_c0, &_call_f_length_c0);
|
||||
methods += new qt_gsi::GenericMethod ("assign", "@brief Method QJsonObject &QJsonObject::operator =(const QJsonObject &other)\n", false, &_init_f_operator_eq__2403, &_call_f_operator_eq__2403);
|
||||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonObject::operator!=(const QJsonObject &other)\n", true, &_init_f_operator_excl__eq__c2403, &_call_f_operator_excl__eq__c2403);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonObject::operator==(const QJsonObject &other)\n", true, &_init_f_operator_eq__eq__c2403, &_call_f_operator_eq__eq__c2403);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValue QJsonObject::operator[](const QString &key)\n", true, &_init_f_operator_index__c2025, &_call_f_operator_index__c2025);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValueRef QJsonObject::operator[](const QString &key)\n", false, &_init_f_operator_index__2025, &_call_f_operator_index__2025);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValue QJsonObject::operator[](QStringView key)\n", true, &_init_f_operator_index__c1559, &_call_f_operator_index__c1559);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValue QJsonObject::operator[](QLatin1String key)\n", true, &_init_f_operator_index__c1701, &_call_f_operator_index__c1701);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValueRef QJsonObject::operator[](QStringView key)\n", false, &_init_f_operator_index__1559, &_call_f_operator_index__1559);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method QJsonValueRef QJsonObject::operator[](QLatin1String key)\n", false, &_init_f_operator_index__1701, &_call_f_operator_index__1701);
|
||||
methods += new qt_gsi::GenericMethod ("remove", "@brief Method void QJsonObject::remove(const QString &key)\n", false, &_init_f_remove_2025, &_call_f_remove_2025);
|
||||
methods += new qt_gsi::GenericMethod ("remove", "@brief Method void QJsonObject::remove(QStringView key)\n", false, &_init_f_remove_1559, &_call_f_remove_1559);
|
||||
methods += new qt_gsi::GenericMethod ("remove", "@brief Method void QJsonObject::remove(QLatin1String key)\n", false, &_init_f_remove_1701, &_call_f_remove_1701);
|
||||
methods += new qt_gsi::GenericMethod ("size", "@brief Method qsizetype QJsonObject::size()\n", true, &_init_f_size_c0, &_call_f_size_c0);
|
||||
methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QJsonObject::swap(QJsonObject &other)\n", false, &_init_f_swap_1708, &_call_f_swap_1708);
|
||||
methods += new qt_gsi::GenericMethod ("take", "@brief Method QJsonValue QJsonObject::take(const QString &key)\n", false, &_init_f_take_2025, &_call_f_take_2025);
|
||||
methods += new qt_gsi::GenericMethod ("take", "@brief Method QJsonValue QJsonObject::take(QStringView key)\n", false, &_init_f_take_1559, &_call_f_take_1559);
|
||||
methods += new qt_gsi::GenericMethod ("take", "@brief Method QJsonValue QJsonObject::take(QLatin1String key)\n", false, &_init_f_take_1701, &_call_f_take_1701);
|
||||
methods += new qt_gsi::GenericMethod ("toVariantHash", "@brief Method QVariantHash QJsonObject::toVariantHash()\n", true, &_init_f_toVariantHash_c0, &_call_f_toVariantHash_c0);
|
||||
methods += new qt_gsi::GenericMethod ("toVariantMap", "@brief Method QVariantMap QJsonObject::toVariantMap()\n", true, &_init_f_toVariantMap_c0, &_call_f_toVariantMap_c0);
|
||||
methods += new qt_gsi::GenericMethod ("value", "@brief Method QJsonValue QJsonObject::value(const QString &key)\n", true, &_init_f_value_c2025, &_call_f_value_c2025);
|
||||
methods += new qt_gsi::GenericMethod ("value", "@brief Method QJsonValue QJsonObject::value(QStringView key)\n", true, &_init_f_value_c1559, &_call_f_value_c1559);
|
||||
methods += new qt_gsi::GenericMethod ("value", "@brief Method QJsonValue QJsonObject::value(QLatin1String key)\n", true, &_init_f_value_c1701, &_call_f_value_c1701);
|
||||
methods += new qt_gsi::GenericStaticMethod ("fromVariantHash", "@brief Static method QJsonObject QJsonObject::fromVariantHash(const QVariantHash &map)\nThis method is static and can be called without an instance.", &_init_f_fromVariantHash_2507, &_call_f_fromVariantHash_2507);
|
||||
methods += new qt_gsi::GenericStaticMethod ("fromVariantMap", "@brief Static method QJsonObject QJsonObject::fromVariantMap(const QVariantMap &map)\nThis method is static and can be called without an instance.", &_init_f_fromVariantMap_2405, &_call_f_fromVariantMap_2405);
|
||||
return methods;
|
||||
|
|
|
|||
|
|
@ -1,653 +0,0 @@
|
|||
|
||||
/*
|
||||
|
||||
KLayout Layout Viewer
|
||||
Copyright (C) 2006-2022 Matthias Koefferlein
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file gsiDeclQJsonObject_Const_iterator.cc
|
||||
*
|
||||
* DO NOT EDIT THIS FILE.
|
||||
* This file has been created automatically
|
||||
*/
|
||||
|
||||
#include <QJsonObject>
|
||||
#include <QJsonObject>
|
||||
#include <QJsonValueRef>
|
||||
#include "gsiQt.h"
|
||||
#include "gsiQtCoreCommon.h"
|
||||
#include <memory>
|
||||
|
||||
// -----------------------------------------------------------------------
|
||||
// class QJsonObject::const_iterator
|
||||
|
||||
// Constructor QJsonObject::const_iterator::const_iterator()
|
||||
|
||||
|
||||
static void _init_ctor_QJsonObject_Const_iterator_0 (qt_gsi::GenericStaticMethod *decl)
|
||||
{
|
||||
decl->set_return_new<QJsonObject::const_iterator> ();
|
||||
}
|
||||
|
||||
static void _call_ctor_QJsonObject_Const_iterator_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<QJsonObject::const_iterator *> (new QJsonObject::const_iterator ());
|
||||
}
|
||||
|
||||
|
||||
// Constructor QJsonObject::const_iterator::const_iterator(const QJsonObject *obj, qsizetype index)
|
||||
|
||||
|
||||
static void _init_ctor_QJsonObject_Const_iterator_3741 (qt_gsi::GenericStaticMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("obj");
|
||||
decl->add_arg<const QJsonObject * > (argspec_0);
|
||||
static gsi::ArgSpecBase argspec_1 ("index");
|
||||
decl->add_arg<qsizetype > (argspec_1);
|
||||
decl->set_return_new<QJsonObject::const_iterator> ();
|
||||
}
|
||||
|
||||
static void _call_ctor_QJsonObject_Const_iterator_3741 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject *arg1 = gsi::arg_reader<const QJsonObject * >() (args, heap);
|
||||
qsizetype arg2 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator *> (new QJsonObject::const_iterator (arg1, arg2));
|
||||
}
|
||||
|
||||
|
||||
// Constructor QJsonObject::const_iterator::const_iterator(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
static void _init_ctor_QJsonObject_Const_iterator_3393 (qt_gsi::GenericStaticMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::iterator & > (argspec_0);
|
||||
decl->set_return_new<QJsonObject::const_iterator> ();
|
||||
}
|
||||
|
||||
static void _call_ctor_QJsonObject_Const_iterator_3393 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator *> (new QJsonObject::const_iterator (arg1));
|
||||
}
|
||||
|
||||
|
||||
// Constructor QJsonObject::const_iterator::const_iterator(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_ctor_QJsonObject_Const_iterator_4039 (qt_gsi::GenericStaticMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return_new<QJsonObject::const_iterator> ();
|
||||
}
|
||||
|
||||
static void _call_ctor_QJsonObject_Const_iterator_4039 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator *> (new QJsonObject::const_iterator (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QString QJsonObject::const_iterator::key()
|
||||
|
||||
|
||||
static void _init_f_key_c0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<QString > ();
|
||||
}
|
||||
|
||||
static void _call_f_key_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<QString > ((QString)((QJsonObject::const_iterator *)cls)->key ());
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator!=(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_excl__eq__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_excl__eq__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator!= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator!=(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_excl__eq__c3393 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_excl__eq__c3393 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator!= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValueRef QJsonObject::const_iterator::operator*()
|
||||
|
||||
|
||||
static void _init_f_operator_star__c0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<const QJsonValueRef > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_star__c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<const QJsonValueRef > ((const QJsonValueRef)((QJsonObject::const_iterator *)cls)->operator* ());
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::const_iterator::operator+(qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_plus__c1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_plus__c1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject::const_iterator *)cls)->operator+ (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator &QJsonObject::const_iterator::operator++()
|
||||
|
||||
|
||||
static void _init_f_operator_plus__plus__0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<QJsonObject::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_plus__plus__0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<QJsonObject::const_iterator & > ((QJsonObject::const_iterator &)((QJsonObject::const_iterator *)cls)->operator++ ());
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::const_iterator::operator++(int)
|
||||
|
||||
|
||||
static void _init_f_operator_plus__plus__767 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("arg1");
|
||||
decl->add_arg<int > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
int arg1 = gsi::arg_reader<int >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject::const_iterator *)cls)->operator++ (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator &QJsonObject::const_iterator::operator+=(qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_plus__eq__1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_plus__eq__1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator & > ((QJsonObject::const_iterator &)((QJsonObject::const_iterator *)cls)->operator+= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::const_iterator::operator-(qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_minus__c1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__c1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject::const_iterator *)cls)->operator- (arg1));
|
||||
}
|
||||
|
||||
|
||||
// qsizetype QJsonObject::const_iterator::operator-(QJsonObject::const_iterator j)
|
||||
|
||||
|
||||
static void _init_f_operator_minus__c3162 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<QJsonObject::const_iterator > (argspec_0);
|
||||
decl->set_return<qsizetype > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__c3162 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QJsonObject::const_iterator arg1 = gsi::arg_reader<QJsonObject::const_iterator >() (args, heap);
|
||||
ret.write<qsizetype > ((qsizetype)((QJsonObject::const_iterator *)cls)->operator- (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator &QJsonObject::const_iterator::operator--()
|
||||
|
||||
|
||||
static void _init_f_operator_minus__minus__0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<QJsonObject::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__minus__0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<QJsonObject::const_iterator & > ((QJsonObject::const_iterator &)((QJsonObject::const_iterator *)cls)->operator-- ());
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator QJsonObject::const_iterator::operator--(int)
|
||||
|
||||
|
||||
static void _init_f_operator_minus__minus__767 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("arg1");
|
||||
decl->add_arg<int > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
int arg1 = gsi::arg_reader<int >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator > ((QJsonObject::const_iterator)((QJsonObject::const_iterator *)cls)->operator-- (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator &QJsonObject::const_iterator::operator-=(qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_minus__eq__1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__eq__1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator & > ((QJsonObject::const_iterator &)((QJsonObject::const_iterator *)cls)->operator-= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValueRef *QJsonObject::const_iterator::operator->()
|
||||
|
||||
|
||||
static void _init_f_operator_minus__gt__c0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<const QJsonValueRef * > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_minus__gt__c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<const QJsonValueRef * > ((const QJsonValueRef *)((QJsonObject::const_iterator *)cls)->operator-> ());
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator<(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator< (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator<(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__c3393 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__c3393 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator< (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator<=(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__eq__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__eq__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator<= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator<=(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__eq__c3393 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__eq__c3393 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator<= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::const_iterator &QJsonObject::const_iterator::operator=(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_eq__4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<QJsonObject::const_iterator & > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_eq__4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<QJsonObject::const_iterator & > ((QJsonObject::const_iterator &)((QJsonObject::const_iterator *)cls)->operator= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator==(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_eq__eq__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_eq__eq__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator== (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator==(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_eq__eq__c3393 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_eq__eq__c3393 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator== (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator>(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator> (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator>(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__c3393 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__c3393 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator> (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator>=(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__eq__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__eq__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator>= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::const_iterator::operator>=(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__eq__c3393 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__eq__c3393 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::const_iterator *)cls)->operator>= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValueRef QJsonObject::const_iterator::operator[](qsizetype j)
|
||||
|
||||
|
||||
static void _init_f_operator_index__1442 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("j");
|
||||
decl->add_arg<qsizetype > (argspec_0);
|
||||
decl->set_return<const QJsonValueRef > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__1442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
qsizetype arg1 = gsi::arg_reader<qsizetype >() (args, heap);
|
||||
ret.write<const QJsonValueRef > ((const QJsonValueRef)((QJsonObject::const_iterator *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValueRef QJsonObject::const_iterator::value()
|
||||
|
||||
|
||||
static void _init_f_value_c0 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
decl->set_return<QJsonValueRef > ();
|
||||
}
|
||||
|
||||
static void _call_f_value_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
ret.write<QJsonValueRef > ((QJsonValueRef)((QJsonObject::const_iterator *)cls)->value ());
|
||||
}
|
||||
|
||||
|
||||
|
||||
namespace gsi
|
||||
{
|
||||
|
||||
static gsi::Methods methods_QJsonObject_Const_iterator () {
|
||||
gsi::Methods methods;
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonObject::const_iterator::const_iterator()\nThis method creates an object of class QJsonObject::const_iterator.", &_init_ctor_QJsonObject_Const_iterator_0, &_call_ctor_QJsonObject_Const_iterator_0);
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonObject::const_iterator::const_iterator(const QJsonObject *obj, qsizetype index)\nThis method creates an object of class QJsonObject::const_iterator.", &_init_ctor_QJsonObject_Const_iterator_3741, &_call_ctor_QJsonObject_Const_iterator_3741);
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonObject::const_iterator::const_iterator(const QJsonObject::iterator &other)\nThis method creates an object of class QJsonObject::const_iterator.", &_init_ctor_QJsonObject_Const_iterator_3393, &_call_ctor_QJsonObject_Const_iterator_3393);
|
||||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonObject::const_iterator::const_iterator(const QJsonObject::const_iterator &other)\nThis method creates an object of class QJsonObject::const_iterator.", &_init_ctor_QJsonObject_Const_iterator_4039, &_call_ctor_QJsonObject_Const_iterator_4039);
|
||||
methods += new qt_gsi::GenericMethod ("key", "@brief Method QString QJsonObject::const_iterator::key()\n", true, &_init_f_key_c0, &_call_f_key_c0);
|
||||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonObject::const_iterator::operator!=(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_excl__eq__c4039, &_call_f_operator_excl__eq__c4039);
|
||||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonObject::const_iterator::operator!=(const QJsonObject::iterator &other)\n", true, &_init_f_operator_excl__eq__c3393, &_call_f_operator_excl__eq__c3393);
|
||||
methods += new qt_gsi::GenericMethod ("*", "@brief Method const QJsonValueRef QJsonObject::const_iterator::operator*()\n", true, &_init_f_operator_star__c0, &_call_f_operator_star__c0);
|
||||
methods += new qt_gsi::GenericMethod ("+", "@brief Method QJsonObject::const_iterator QJsonObject::const_iterator::operator+(qsizetype j)\n", true, &_init_f_operator_plus__c1442, &_call_f_operator_plus__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("++", "@brief Method QJsonObject::const_iterator &QJsonObject::const_iterator::operator++()\n", false, &_init_f_operator_plus__plus__0, &_call_f_operator_plus__plus__0);
|
||||
methods += new qt_gsi::GenericMethod ("++", "@brief Method QJsonObject::const_iterator QJsonObject::const_iterator::operator++(int)\n", false, &_init_f_operator_plus__plus__767, &_call_f_operator_plus__plus__767);
|
||||
methods += new qt_gsi::GenericMethod ("+=", "@brief Method QJsonObject::const_iterator &QJsonObject::const_iterator::operator+=(qsizetype j)\n", false, &_init_f_operator_plus__eq__1442, &_call_f_operator_plus__eq__1442);
|
||||
methods += new qt_gsi::GenericMethod ("-", "@brief Method QJsonObject::const_iterator QJsonObject::const_iterator::operator-(qsizetype j)\n", true, &_init_f_operator_minus__c1442, &_call_f_operator_minus__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("-", "@brief Method qsizetype QJsonObject::const_iterator::operator-(QJsonObject::const_iterator j)\n", true, &_init_f_operator_minus__c3162, &_call_f_operator_minus__c3162);
|
||||
methods += new qt_gsi::GenericMethod ("--", "@brief Method QJsonObject::const_iterator &QJsonObject::const_iterator::operator--()\n", false, &_init_f_operator_minus__minus__0, &_call_f_operator_minus__minus__0);
|
||||
methods += new qt_gsi::GenericMethod ("--", "@brief Method QJsonObject::const_iterator QJsonObject::const_iterator::operator--(int)\n", false, &_init_f_operator_minus__minus__767, &_call_f_operator_minus__minus__767);
|
||||
methods += new qt_gsi::GenericMethod ("-=", "@brief Method QJsonObject::const_iterator &QJsonObject::const_iterator::operator-=(qsizetype j)\n", false, &_init_f_operator_minus__eq__1442, &_call_f_operator_minus__eq__1442);
|
||||
methods += new qt_gsi::GenericMethod ("->", "@brief Method const QJsonValueRef *QJsonObject::const_iterator::operator->()\n", true, &_init_f_operator_minus__gt__c0, &_call_f_operator_minus__gt__c0);
|
||||
methods += new qt_gsi::GenericMethod ("<", "@brief Method bool QJsonObject::const_iterator::operator<(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_lt__c4039, &_call_f_operator_lt__c4039);
|
||||
methods += new qt_gsi::GenericMethod ("<", "@brief Method bool QJsonObject::const_iterator::operator<(const QJsonObject::iterator &other)\n", true, &_init_f_operator_lt__c3393, &_call_f_operator_lt__c3393);
|
||||
methods += new qt_gsi::GenericMethod ("<=", "@brief Method bool QJsonObject::const_iterator::operator<=(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_lt__eq__c4039, &_call_f_operator_lt__eq__c4039);
|
||||
methods += new qt_gsi::GenericMethod ("<=", "@brief Method bool QJsonObject::const_iterator::operator<=(const QJsonObject::iterator &other)\n", true, &_init_f_operator_lt__eq__c3393, &_call_f_operator_lt__eq__c3393);
|
||||
methods += new qt_gsi::GenericMethod ("assign", "@brief Method QJsonObject::const_iterator &QJsonObject::const_iterator::operator=(const QJsonObject::const_iterator &other)\n", false, &_init_f_operator_eq__4039, &_call_f_operator_eq__4039);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonObject::const_iterator::operator==(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_eq__eq__c4039, &_call_f_operator_eq__eq__c4039);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonObject::const_iterator::operator==(const QJsonObject::iterator &other)\n", true, &_init_f_operator_eq__eq__c3393, &_call_f_operator_eq__eq__c3393);
|
||||
methods += new qt_gsi::GenericMethod (">", "@brief Method bool QJsonObject::const_iterator::operator>(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_gt__c4039, &_call_f_operator_gt__c4039);
|
||||
methods += new qt_gsi::GenericMethod (">", "@brief Method bool QJsonObject::const_iterator::operator>(const QJsonObject::iterator &other)\n", true, &_init_f_operator_gt__c3393, &_call_f_operator_gt__c3393);
|
||||
methods += new qt_gsi::GenericMethod (">=", "@brief Method bool QJsonObject::const_iterator::operator>=(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_gt__eq__c4039, &_call_f_operator_gt__eq__c4039);
|
||||
methods += new qt_gsi::GenericMethod (">=", "@brief Method bool QJsonObject::const_iterator::operator>=(const QJsonObject::iterator &other)\n", true, &_init_f_operator_gt__eq__c3393, &_call_f_operator_gt__eq__c3393);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValueRef QJsonObject::const_iterator::operator[](qsizetype j)\n", false, &_init_f_operator_index__1442, &_call_f_operator_index__1442);
|
||||
methods += new qt_gsi::GenericMethod ("value", "@brief Method QJsonValueRef QJsonObject::const_iterator::value()\n", true, &_init_f_value_c0, &_call_f_value_c0);
|
||||
return methods;
|
||||
}
|
||||
|
||||
gsi::Class<QJsonObject::const_iterator> decl_QJsonObject_Const_iterator ("QtCore", "QJsonObject_Const_iterator",
|
||||
methods_QJsonObject_Const_iterator (),
|
||||
"@qt\n@brief Binding of QJsonObject::const_iterator");
|
||||
|
||||
gsi::ClassExt<QJsonObject> decl_QJsonObject_Const_iterator_as_child (decl_QJsonObject_Const_iterator, "Const_iterator");
|
||||
|
||||
GSI_QTCORE_PUBLIC gsi::Class<QJsonObject::const_iterator> &qtdecl_QJsonObject_Const_iterator () { return decl_QJsonObject_Const_iterator; }
|
||||
|
||||
}
|
||||
|
||||
|
|
@ -127,25 +127,6 @@ static void _call_f_operator_excl__eq__c3393 (const qt_gsi::GenericMethod * /*de
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator!=(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_excl__eq__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_excl__eq__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::iterator *)cls)->operator!= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonValueRef QJsonObject::iterator::operator*()
|
||||
|
||||
|
||||
|
|
@ -358,25 +339,6 @@ static void _call_f_operator_lt__c3393 (const qt_gsi::GenericMethod * /*decl*/,
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator<(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::iterator *)cls)->operator< (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator<=(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
|
|
@ -396,25 +358,6 @@ static void _call_f_operator_lt__eq__c3393 (const qt_gsi::GenericMethod * /*decl
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator<=(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_lt__eq__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_lt__eq__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::iterator *)cls)->operator<= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// QJsonObject::iterator &QJsonObject::iterator::operator=(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
|
|
@ -453,25 +396,6 @@ static void _call_f_operator_eq__eq__c3393 (const qt_gsi::GenericMethod * /*decl
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator==(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_eq__eq__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_eq__eq__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::iterator *)cls)->operator== (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator>(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
|
|
@ -491,25 +415,6 @@ static void _call_f_operator_gt__c3393 (const qt_gsi::GenericMethod * /*decl*/,
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator>(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::iterator *)cls)->operator> (arg1));
|
||||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator>=(const QJsonObject::iterator &other)
|
||||
|
||||
|
||||
|
|
@ -529,25 +434,6 @@ static void _call_f_operator_gt__eq__c3393 (const qt_gsi::GenericMethod * /*decl
|
|||
}
|
||||
|
||||
|
||||
// bool QJsonObject::iterator::operator>=(const QJsonObject::const_iterator &other)
|
||||
|
||||
|
||||
static void _init_f_operator_gt__eq__c4039 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("other");
|
||||
decl->add_arg<const QJsonObject::const_iterator & > (argspec_0);
|
||||
decl->set_return<bool > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_gt__eq__c4039 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
const QJsonObject::const_iterator &arg1 = gsi::arg_reader<const QJsonObject::const_iterator & >() (args, heap);
|
||||
ret.write<bool > ((bool)((QJsonObject::iterator *)cls)->operator>= (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValueRef QJsonObject::iterator::operator[](qsizetype j)
|
||||
|
||||
|
||||
|
|
@ -593,7 +479,6 @@ static gsi::Methods methods_QJsonObject_Iterator () {
|
|||
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QJsonObject::iterator::iterator(const QJsonObject::iterator &other)\nThis method creates an object of class QJsonObject::iterator.", &_init_ctor_QJsonObject_Iterator_3393, &_call_ctor_QJsonObject_Iterator_3393);
|
||||
methods += new qt_gsi::GenericMethod ("key", "@brief Method QString QJsonObject::iterator::key()\n", true, &_init_f_key_c0, &_call_f_key_c0);
|
||||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonObject::iterator::operator!=(const QJsonObject::iterator &other)\n", true, &_init_f_operator_excl__eq__c3393, &_call_f_operator_excl__eq__c3393);
|
||||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonObject::iterator::operator!=(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_excl__eq__c4039, &_call_f_operator_excl__eq__c4039);
|
||||
methods += new qt_gsi::GenericMethod ("*", "@brief Method QJsonValueRef QJsonObject::iterator::operator*()\n", true, &_init_f_operator_star__c0, &_call_f_operator_star__c0);
|
||||
methods += new qt_gsi::GenericMethod ("+", "@brief Method QJsonObject::iterator QJsonObject::iterator::operator+(qsizetype j)\n", true, &_init_f_operator_plus__c1442, &_call_f_operator_plus__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("++", "@brief Method QJsonObject::iterator &QJsonObject::iterator::operator++()\n", false, &_init_f_operator_plus__plus__0, &_call_f_operator_plus__plus__0);
|
||||
|
|
@ -606,16 +491,11 @@ static gsi::Methods methods_QJsonObject_Iterator () {
|
|||
methods += new qt_gsi::GenericMethod ("-=", "@brief Method QJsonObject::iterator &QJsonObject::iterator::operator-=(qsizetype j)\n", false, &_init_f_operator_minus__eq__1442, &_call_f_operator_minus__eq__1442);
|
||||
methods += new qt_gsi::GenericMethod ("->", "@brief Method QJsonValueRef *QJsonObject::iterator::operator->()\n", true, &_init_f_operator_minus__gt__c0, &_call_f_operator_minus__gt__c0);
|
||||
methods += new qt_gsi::GenericMethod ("<", "@brief Method bool QJsonObject::iterator::operator<(const QJsonObject::iterator &other)\n", true, &_init_f_operator_lt__c3393, &_call_f_operator_lt__c3393);
|
||||
methods += new qt_gsi::GenericMethod ("<", "@brief Method bool QJsonObject::iterator::operator<(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_lt__c4039, &_call_f_operator_lt__c4039);
|
||||
methods += new qt_gsi::GenericMethod ("<=", "@brief Method bool QJsonObject::iterator::operator<=(const QJsonObject::iterator &other)\n", true, &_init_f_operator_lt__eq__c3393, &_call_f_operator_lt__eq__c3393);
|
||||
methods += new qt_gsi::GenericMethod ("<=", "@brief Method bool QJsonObject::iterator::operator<=(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_lt__eq__c4039, &_call_f_operator_lt__eq__c4039);
|
||||
methods += new qt_gsi::GenericMethod ("assign", "@brief Method QJsonObject::iterator &QJsonObject::iterator::operator=(const QJsonObject::iterator &other)\n", false, &_init_f_operator_eq__3393, &_call_f_operator_eq__3393);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonObject::iterator::operator==(const QJsonObject::iterator &other)\n", true, &_init_f_operator_eq__eq__c3393, &_call_f_operator_eq__eq__c3393);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonObject::iterator::operator==(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_eq__eq__c4039, &_call_f_operator_eq__eq__c4039);
|
||||
methods += new qt_gsi::GenericMethod (">", "@brief Method bool QJsonObject::iterator::operator>(const QJsonObject::iterator &other)\n", true, &_init_f_operator_gt__c3393, &_call_f_operator_gt__c3393);
|
||||
methods += new qt_gsi::GenericMethod (">", "@brief Method bool QJsonObject::iterator::operator>(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_gt__c4039, &_call_f_operator_gt__c4039);
|
||||
methods += new qt_gsi::GenericMethod (">=", "@brief Method bool QJsonObject::iterator::operator>=(const QJsonObject::iterator &other)\n", true, &_init_f_operator_gt__eq__c3393, &_call_f_operator_gt__eq__c3393);
|
||||
methods += new qt_gsi::GenericMethod (">=", "@brief Method bool QJsonObject::iterator::operator>=(const QJsonObject::const_iterator &other)\n", true, &_init_f_operator_gt__eq__c4039, &_call_f_operator_gt__eq__c4039);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValueRef QJsonObject::iterator::operator[](qsizetype j)\n", false, &_init_f_operator_index__1442, &_call_f_operator_index__1442);
|
||||
methods += new qt_gsi::GenericMethod ("value", "@brief Method QJsonValueRef QJsonObject::iterator::value()\n", true, &_init_f_value_c0, &_call_f_value_c0);
|
||||
return methods;
|
||||
|
|
|
|||
|
|
@ -370,44 +370,6 @@ static void _call_f_operator_index__c2025 (const qt_gsi::GenericMethod * /*decl*
|
|||
}
|
||||
|
||||
|
||||
// const QJsonValue QJsonValue::operator[](QStringView key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c1559 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QStringView > (argspec_0);
|
||||
decl->set_return<const QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c1559 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QStringView arg1 = gsi::arg_reader<QStringView >() (args, heap);
|
||||
ret.write<const QJsonValue > ((const QJsonValue)((QJsonValue *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValue QJsonValue::operator[](QLatin1String key)
|
||||
|
||||
|
||||
static void _init_f_operator_index__c1701 (qt_gsi::GenericMethod *decl)
|
||||
{
|
||||
static gsi::ArgSpecBase argspec_0 ("key");
|
||||
decl->add_arg<QLatin1String > (argspec_0);
|
||||
decl->set_return<const QJsonValue > ();
|
||||
}
|
||||
|
||||
static void _call_f_operator_index__c1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
||||
{
|
||||
__SUPPRESS_UNUSED_WARNING(args);
|
||||
tl::Heap heap;
|
||||
QLatin1String arg1 = gsi::arg_reader<QLatin1String >() (args, heap);
|
||||
ret.write<const QJsonValue > ((const QJsonValue)((QJsonValue *)cls)->operator[] (arg1));
|
||||
}
|
||||
|
||||
|
||||
// const QJsonValue QJsonValue::operator[](qsizetype i)
|
||||
|
||||
|
||||
|
|
@ -699,8 +661,6 @@ static gsi::Methods methods_QJsonValue () {
|
|||
methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QJsonValue::operator!=(const QJsonValue &other)\n", true, &_init_f_operator_excl__eq__c2313, &_call_f_operator_excl__eq__c2313);
|
||||
methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QJsonValue::operator==(const QJsonValue &other)\n", true, &_init_f_operator_eq__eq__c2313, &_call_f_operator_eq__eq__c2313);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValue QJsonValue::operator[](const QString &key)\n", true, &_init_f_operator_index__c2025, &_call_f_operator_index__c2025);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValue QJsonValue::operator[](QStringView key)\n", true, &_init_f_operator_index__c1559, &_call_f_operator_index__c1559);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValue QJsonValue::operator[](QLatin1String key)\n", true, &_init_f_operator_index__c1701, &_call_f_operator_index__c1701);
|
||||
methods += new qt_gsi::GenericMethod ("[]", "@brief Method const QJsonValue QJsonValue::operator[](qsizetype i)\n", true, &_init_f_operator_index__c1442, &_call_f_operator_index__c1442);
|
||||
methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QJsonValue::swap(QJsonValue &other)\n", false, &_init_f_swap_1618, &_call_f_swap_1618);
|
||||
methods += new qt_gsi::GenericMethod ("toArray", "@brief Method QJsonArray QJsonValue::toArray()\n", true, &_init_f_toArray_c0, &_call_f_toArray_c0);
|
||||
|
|
|
|||
Loading…
Reference in New Issue