40
40
return *a == b;
41
41
}
42
42
static bool QJsonObject_iterator_operator_ne (const QJsonObject::iterator *a, const QJsonObject::iterator &b) {
43
- return !(*a == b);
43
+ return *a != b;
44
+ }
45
+ static bool QJsonObject_iterator_operator_le (const QJsonObject::iterator *a, const QJsonObject::iterator &b) {
46
+ return *a <= b;
47
+ }
48
+ static bool QJsonObject_iterator_operator_lt (const QJsonObject::iterator *a, const QJsonObject::iterator &b) {
49
+ return *a < b;
50
+ }
51
+ static bool QJsonObject_iterator_operator_ge (const QJsonObject::iterator *a, const QJsonObject::iterator &b) {
52
+ return *a >= b;
53
+ }
54
+ static bool QJsonObject_iterator_operator_gt (const QJsonObject::iterator *a, const QJsonObject::iterator &b) {
55
+ return *a > b;
44
56
}
45
57
46
58
// Constructor QJsonObject::iterator::iterator()
@@ -307,44 +319,6 @@ static void _call_f_operator_minus__gt__c0 (const qt_gsi::GenericMethod * /*decl
307
319
}
308
320
309
321
310
- // bool QJsonObject::iterator::operator<(const QJsonObject::iterator &other)
311
-
312
-
313
- static void _init_f_operator_lt__c3393 (qt_gsi::GenericMethod *decl)
314
- {
315
- static gsi::ArgSpecBase argspec_0 (" other" );
316
- decl->add_arg <const QJsonObject::iterator & > (argspec_0);
317
- decl->set_return <bool > ();
318
- }
319
-
320
- static void _call_f_operator_lt__c3393 (const qt_gsi::GenericMethod * /* decl*/ , void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
321
- {
322
- __SUPPRESS_UNUSED_WARNING (args);
323
- tl::Heap heap;
324
- const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
325
- ret.write <bool > ((bool )((QJsonObject::iterator *)cls)->operator < (arg1));
326
- }
327
-
328
-
329
- // bool QJsonObject::iterator::operator<=(const QJsonObject::iterator &other)
330
-
331
-
332
- static void _init_f_operator_lt__eq__c3393 (qt_gsi::GenericMethod *decl)
333
- {
334
- static gsi::ArgSpecBase argspec_0 (" other" );
335
- decl->add_arg <const QJsonObject::iterator & > (argspec_0);
336
- decl->set_return <bool > ();
337
- }
338
-
339
- static void _call_f_operator_lt__eq__c3393 (const qt_gsi::GenericMethod * /* decl*/ , void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
340
- {
341
- __SUPPRESS_UNUSED_WARNING (args);
342
- tl::Heap heap;
343
- const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
344
- ret.write <bool > ((bool )((QJsonObject::iterator *)cls)->operator <= (arg1));
345
- }
346
-
347
-
348
322
// QJsonObject::iterator &QJsonObject::iterator::operator=(const QJsonObject::iterator &other)
349
323
350
324
@@ -364,44 +338,6 @@ static void _call_f_operator_eq__3393 (const qt_gsi::GenericMethod * /*decl*/, v
364
338
}
365
339
366
340
367
- // bool QJsonObject::iterator::operator>(const QJsonObject::iterator &other)
368
-
369
-
370
- static void _init_f_operator_gt__c3393 (qt_gsi::GenericMethod *decl)
371
- {
372
- static gsi::ArgSpecBase argspec_0 (" other" );
373
- decl->add_arg <const QJsonObject::iterator & > (argspec_0);
374
- decl->set_return <bool > ();
375
- }
376
-
377
- static void _call_f_operator_gt__c3393 (const qt_gsi::GenericMethod * /* decl*/ , void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
378
- {
379
- __SUPPRESS_UNUSED_WARNING (args);
380
- tl::Heap heap;
381
- const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
382
- ret.write <bool > ((bool )((QJsonObject::iterator *)cls)->operator > (arg1));
383
- }
384
-
385
-
386
- // bool QJsonObject::iterator::operator>=(const QJsonObject::iterator &other)
387
-
388
-
389
- static void _init_f_operator_gt__eq__c3393 (qt_gsi::GenericMethod *decl)
390
- {
391
- static gsi::ArgSpecBase argspec_0 (" other" );
392
- decl->add_arg <const QJsonObject::iterator & > (argspec_0);
393
- decl->set_return <bool > ();
394
- }
395
-
396
- static void _call_f_operator_gt__eq__c3393 (const qt_gsi::GenericMethod * /* decl*/ , void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
397
- {
398
- __SUPPRESS_UNUSED_WARNING (args);
399
- tl::Heap heap;
400
- const QJsonObject::iterator &arg1 = gsi::arg_reader<const QJsonObject::iterator & >() (args, heap);
401
- ret.write <bool > ((bool )((QJsonObject::iterator *)cls)->operator >= (arg1));
402
- }
403
-
404
-
405
341
// const QJsonValueRef QJsonObject::iterator::operator[](qsizetype j)
406
342
407
343
@@ -457,19 +393,19 @@ static gsi::Methods methods_QJsonObject_Iterator () {
457
393
methods += new qt_gsi::GenericMethod (" --" , " @brief Method QJsonObject::iterator QJsonObject::iterator::operator--(int)\n " , false , &_init_f_operator_minus__minus__767, &_call_f_operator_minus__minus__767);
458
394
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);
459
395
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);
460
- 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);
461
- 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);
462
396
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);
463
- 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);
464
- 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);
465
397
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);
466
398
methods += new qt_gsi::GenericMethod (" value" , " @brief Method QJsonValueRef QJsonObject::iterator::value()\n " , true , &_init_f_value_c0, &_call_f_value_c0);
467
399
return methods;
468
400
}
469
401
470
402
gsi::Class<QJsonObject::iterator> decl_QJsonObject_Iterator (" QtCore" , " QJsonObject_Iterator" ,
471
403
gsi::method_ext (" ==" , &QJsonObject_iterator_operator_eq, gsi::arg (" other" ), "@brief Method bool QJsonObject::iterator::operator==(const QJsonObject::iterator &) const ") +
472
- gsi::method_ext(" !=" , &QJsonObject_iterator_operator_ne, gsi::arg (" other" ), "@brief Method bool QJsonObject::iterator::operator!=(const QJsonObject::iterator &) const ")
404
+ gsi::method_ext(" !=" , &QJsonObject_iterator_operator_ne, gsi::arg (" other" ), "@brief Method bool QJsonObject::iterator::operator!=(const QJsonObject::iterator &) const ") +
405
+ gsi::method_ext(" <=" , &QJsonObject_iterator_operator_le, gsi::arg (" other" ), "@brief Method bool QJsonObject::iterator::operator<=(const QJsonObject::iterator &) const ") +
406
+ gsi::method_ext(" <" , &QJsonObject_iterator_operator_lt, gsi::arg (" other" ), "@brief Method bool QJsonObject::iterator::operator<(const QJsonObject::iterator &) const ") +
407
+ gsi::method_ext(" >=" , &QJsonObject_iterator_operator_ge, gsi::arg (" other" ), "@brief Method bool QJsonObject::iterator::operator>=(const QJsonObject::iterator &) const ") +
408
+ gsi::method_ext(" >" , &QJsonObject_iterator_operator_gt, gsi::arg (" other" ), "@brief Method bool QJsonObject::iterator::operator>(const QJsonObject::iterator &) const ")
473
409
+
474
410
methods_QJsonObject_Iterator (),
475
411
"@qt\n@brief Binding of QJsonObject::iterator");
0 commit comments