klayout/src/gsiqt/qt6/QtGui/gsiDeclQOpenGLExtraFunction...

74 lines
2.7 KiB
C++

/*
KLayout Layout Viewer
Copyright (C) 2006-2021 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 gsiDeclQOpenGLExtraFunctionsPrivate_Functions.cc
*
* DO NOT EDIT THIS FILE.
* This file has been created automatically
*/
#include <QOpenGLExtraFunctionsPrivate>
#include "gsiQt.h"
#include "gsiQtGuiCommon.h"
#include "gsiDeclQtGuiTypeTraits.h"
#include <memory>
// -----------------------------------------------------------------------
// struct QOpenGLExtraFunctionsPrivate::Functions
// Constructor QOpenGLExtraFunctionsPrivate::Functions::Functions()
static void _init_ctor_QOpenGLExtraFunctionsPrivate_Functions_0 (qt_gsi::GenericStaticMethod *decl)
{
decl->set_return_new<QOpenGLExtraFunctionsPrivate::Functions> ();
}
static void _call_ctor_QOpenGLExtraFunctionsPrivate_Functions_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
{
__SUPPRESS_UNUSED_WARNING(args);
ret.write<QOpenGLExtraFunctionsPrivate::Functions *> (new QOpenGLExtraFunctionsPrivate::Functions ());
}
namespace gsi
{
static gsi::Methods methods_QOpenGLExtraFunctionsPrivate_Functions () {
gsi::Methods methods;
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QOpenGLExtraFunctionsPrivate::Functions::Functions()\nThis method creates an object of class QOpenGLExtraFunctionsPrivate::Functions.", &_init_ctor_QOpenGLExtraFunctionsPrivate_Functions_0, &_call_ctor_QOpenGLExtraFunctionsPrivate_Functions_0);
return methods;
}
gsi::Class<QOpenGLExtraFunctionsPrivate::Functions> decl_QOpenGLExtraFunctionsPrivate_Functions ("QtGui", "QOpenGLExtraFunctionsPrivate_Functions",
methods_QOpenGLExtraFunctionsPrivate_Functions (),
"@qt\n@brief Binding of QOpenGLExtraFunctionsPrivate::Functions");
gsi::ClassExt<QOpenGLExtraFunctionsPrivate> decl_QOpenGLExtraFunctionsPrivate_Functions_as_child (decl_QOpenGLExtraFunctionsPrivate_Functions, "Functions");
GSI_QTGUI_PUBLIC gsi::Class<QOpenGLExtraFunctionsPrivate::Functions> &qtdecl_QOpenGLExtraFunctionsPrivate_Functions () { return decl_QOpenGLExtraFunctionsPrivate_Functions; }
}