/** * @file gsiDeclQMetaObject_Connection.cc * * DO NOT EDIT THIS FILE. * This file has been created automatically */ #include #include "gsiQt.h" #include "gsiQtCommon.h" #include "gsiDeclQtTypeTraits.h" #include // ----------------------------------------------------------------------- // class QMetaObject::Connection // Constructor QMetaObject::Connection::Connection() static void _init_ctor_QMetaObject_Connection_0 (qt_gsi::GenericStaticMethod *decl) { decl->set_return_new (); } static void _call_ctor_QMetaObject_Connection_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write (new QMetaObject::Connection ()); } // Constructor QMetaObject::Connection::Connection(const QMetaObject::Connection &other) static void _init_ctor_QMetaObject_Connection_3540 (qt_gsi::GenericStaticMethod *decl) { static gsi::ArgSpecBase argspec_0 ("other"); decl->add_arg (argspec_0); decl->set_return_new (); } static void _call_ctor_QMetaObject_Connection_3540 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const QMetaObject::Connection &arg1 = args.read (heap); ret.write (new QMetaObject::Connection (arg1)); } // QMetaObject::Connection &QMetaObject::Connection::operator=(const QMetaObject::Connection &other) static void _init_f_operator_eq__3540 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("other"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_operator_eq__3540 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const QMetaObject::Connection &arg1 = args.read (heap); ret.write ((QMetaObject::Connection &)((QMetaObject::Connection *)cls)->operator= (arg1)); } namespace gsi { static gsi::Methods methods_QMetaObject_Connection () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QMetaObject::Connection::Connection()\nThis method creates an object of class QMetaObject::Connection.", &_init_ctor_QMetaObject_Connection_0, &_call_ctor_QMetaObject_Connection_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QMetaObject::Connection::Connection(const QMetaObject::Connection &other)\nThis method creates an object of class QMetaObject::Connection.", &_init_ctor_QMetaObject_Connection_3540, &_call_ctor_QMetaObject_Connection_3540); methods += new qt_gsi::GenericMethod ("assign", "@brief Method QMetaObject::Connection &QMetaObject::Connection::operator=(const QMetaObject::Connection &other)\n", false, &_init_f_operator_eq__3540, &_call_f_operator_eq__3540); return methods; } gsi::Class decl_QMetaObject_Connection ("QMetaObject_Connection", methods_QMetaObject_Connection (), "@qt\n@brief Binding of QMetaObject::Connection"); gsi::ClassExt decl_QMetaObject_Connection_as_child (decl_QMetaObject_Connection, "Connection"); GSIQT_PUBLIC gsi::Class &qtdecl_QMetaObject_Connection () { return decl_QMetaObject_Connection; } }