mirror of https://github.com/KLayout/klayout.git
128 lines
3.8 KiB
C++
128 lines
3.8 KiB
C++
|
|
/*
|
|
|
|
KLayout Layout Viewer
|
|
Copyright (C) 2006-2017 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 gsiDeclQReadLocker.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QReadLocker>
|
|
#include <QReadWriteLock>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QReadLocker
|
|
|
|
// Constructor QReadLocker::QReadLocker(QReadWriteLock *readWriteLock)
|
|
|
|
|
|
static void _init_ctor_QReadLocker_1999 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("readWriteLock");
|
|
decl->add_arg<QReadWriteLock * > (argspec_0);
|
|
decl->set_return_new<QReadLocker> ();
|
|
}
|
|
|
|
static void _call_ctor_QReadLocker_1999 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QReadWriteLock *arg1 = args.read<QReadWriteLock * > (heap);
|
|
ret.write<QReadLocker *> (new QReadLocker (arg1));
|
|
}
|
|
|
|
|
|
// QReadWriteLock *QReadLocker::readWriteLock()
|
|
|
|
|
|
static void _init_f_readWriteLock_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<QReadWriteLock * > ();
|
|
}
|
|
|
|
static void _call_f_readWriteLock_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<QReadWriteLock * > ((QReadWriteLock *)((QReadLocker *)cls)->readWriteLock ());
|
|
}
|
|
|
|
|
|
// void QReadLocker::relock()
|
|
|
|
|
|
static void _init_f_relock_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_relock_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QReadLocker *)cls)->relock ();
|
|
}
|
|
|
|
|
|
// void QReadLocker::unlock()
|
|
|
|
|
|
static void _init_f_unlock_0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<void > ();
|
|
}
|
|
|
|
static void _call_f_unlock_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
__SUPPRESS_UNUSED_WARNING(ret);
|
|
((QReadLocker *)cls)->unlock ();
|
|
}
|
|
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QReadLocker () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QReadLocker::QReadLocker(QReadWriteLock *readWriteLock)\nThis method creates an object of class QReadLocker.", &_init_ctor_QReadLocker_1999, &_call_ctor_QReadLocker_1999);
|
|
methods += new qt_gsi::GenericMethod ("readWriteLock", "@brief Method QReadWriteLock *QReadLocker::readWriteLock()\n", true, &_init_f_readWriteLock_c0, &_call_f_readWriteLock_c0);
|
|
methods += new qt_gsi::GenericMethod ("relock", "@brief Method void QReadLocker::relock()\n", false, &_init_f_relock_0, &_call_f_relock_0);
|
|
methods += new qt_gsi::GenericMethod ("unlock", "@brief Method void QReadLocker::unlock()\n", false, &_init_f_unlock_0, &_call_f_unlock_0);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QReadLocker> decl_QReadLocker ("QReadLocker",
|
|
methods_QReadLocker (),
|
|
"@qt\n@brief Binding of QReadLocker");
|
|
|
|
|
|
GSIQT_PUBLIC gsi::Class<QReadLocker> &qtdecl_QReadLocker () { return decl_QReadLocker; }
|
|
|
|
}
|
|
|