/* KLayout Layout Viewer Copyright (C) 2006-2018 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 gsiDeclQStyleOptionFrameV2.cc * * DO NOT EDIT THIS FILE. * This file has been created automatically */ #include #include #include #include "gsiQt.h" #include "gsiQtCommon.h" #include "gsiDeclQtTypeTraits.h" #include // ----------------------------------------------------------------------- // class QStyleOptionFrameV2 // Constructor QStyleOptionFrameV2::QStyleOptionFrameV2() static void _init_ctor_QStyleOptionFrameV2_0 (qt_gsi::GenericStaticMethod *decl) { decl->set_return_new (); } static void _call_ctor_QStyleOptionFrameV2_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); ret.write (new QStyleOptionFrameV2 ()); } // Constructor QStyleOptionFrameV2::QStyleOptionFrameV2(const QStyleOptionFrameV2 &other) static void _init_ctor_QStyleOptionFrameV2_3183 (qt_gsi::GenericStaticMethod *decl) { static gsi::ArgSpecBase argspec_0 ("other"); decl->add_arg (argspec_0); decl->set_return_new (); } static void _call_ctor_QStyleOptionFrameV2_3183 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const QStyleOptionFrameV2 &arg1 = args.read (heap); ret.write (new QStyleOptionFrameV2 (arg1)); } // Constructor QStyleOptionFrameV2::QStyleOptionFrameV2(const QStyleOptionFrame &other) static void _init_ctor_QStyleOptionFrameV2_3047 (qt_gsi::GenericStaticMethod *decl) { static gsi::ArgSpecBase argspec_0 ("other"); decl->add_arg (argspec_0); decl->set_return_new (); } static void _call_ctor_QStyleOptionFrameV2_3047 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const QStyleOptionFrame &arg1 = args.read (heap); ret.write (new QStyleOptionFrameV2 (arg1)); } // (const QStyleOptionFrame &) static void _init_f_operator_eq__3047 (qt_gsi::GenericMethod *decl) { static gsi::ArgSpecBase argspec_0 ("other"); decl->add_arg (argspec_0); decl->set_return (); } static void _call_f_operator_eq__3047 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; const QStyleOptionFrame &arg1 = args.read (heap); ret.write ((QStyleOptionFrameV2 &)((QStyleOptionFrameV2 *)cls)->operator= (arg1)); } namespace gsi { static gsi::Methods methods_QStyleOptionFrameV2 () { gsi::Methods methods; methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV2::QStyleOptionFrameV2()\nThis method creates an object of class QStyleOptionFrameV2.", &_init_ctor_QStyleOptionFrameV2_0, &_call_ctor_QStyleOptionFrameV2_0); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV2::QStyleOptionFrameV2(const QStyleOptionFrameV2 &other)\nThis method creates an object of class QStyleOptionFrameV2.", &_init_ctor_QStyleOptionFrameV2_3183, &_call_ctor_QStyleOptionFrameV2_3183); methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleOptionFrameV2::QStyleOptionFrameV2(const QStyleOptionFrame &other)\nThis method creates an object of class QStyleOptionFrameV2.", &_init_ctor_QStyleOptionFrameV2_3047, &_call_ctor_QStyleOptionFrameV2_3047); methods += new qt_gsi::GenericMethod ("assign", "@brief Method (const QStyleOptionFrame &)\n", false, &_init_f_operator_eq__3047, &_call_f_operator_eq__3047); return methods; } gsi::Class &qtdecl_QStyleOptionFrame (); gsi::Class decl_QStyleOptionFrameV2 (qtdecl_QStyleOptionFrame (), "QStyleOptionFrameV2", methods_QStyleOptionFrameV2 (), "@qt\n@brief Binding of QStyleOptionFrameV2"); GSIQT_PUBLIC gsi::Class &qtdecl_QStyleOptionFrameV2 () { return decl_QStyleOptionFrameV2; } }