klayout/src/gsiqt5/gsiDeclQStyleHintReturnMask.cc

75 lines
2.3 KiB
C++

/*
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 gsiDeclQStyleHintReturnMask.cc
*
* DO NOT EDIT THIS FILE.
* This file has been created automatically
*/
#include <QStyleHintReturnMask>
#include "gsiQt.h"
#include "gsiQtCommon.h"
#include "gsiDeclQtTypeTraits.h"
#include <memory>
// -----------------------------------------------------------------------
// class QStyleHintReturnMask
// Constructor QStyleHintReturnMask::QStyleHintReturnMask()
static void _init_ctor_QStyleHintReturnMask_0 (qt_gsi::GenericStaticMethod *decl)
{
decl->set_return_new<QStyleHintReturnMask> ();
}
static void _call_ctor_QStyleHintReturnMask_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
{
__SUPPRESS_UNUSED_WARNING(args);
ret.write<QStyleHintReturnMask *> (new QStyleHintReturnMask ());
}
namespace gsi
{
static gsi::Methods methods_QStyleHintReturnMask () {
gsi::Methods methods;
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QStyleHintReturnMask::QStyleHintReturnMask()\nThis method creates an object of class QStyleHintReturnMask.", &_init_ctor_QStyleHintReturnMask_0, &_call_ctor_QStyleHintReturnMask_0);
return methods;
}
gsi::Class<QStyleHintReturn> &qtdecl_QStyleHintReturn ();
gsi::Class<QStyleHintReturnMask> decl_QStyleHintReturnMask (qtdecl_QStyleHintReturn (), "QStyleHintReturnMask",
methods_QStyleHintReturnMask (),
"@qt\n@brief Binding of QStyleHintReturnMask");
GSIQT_PUBLIC gsi::Class<QStyleHintReturnMask> &qtdecl_QStyleHintReturnMask () { return decl_QStyleHintReturnMask; }
}