mirror of https://github.com/KLayout/klayout.git
411 lines
18 KiB
C++
411 lines
18 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 gsiDeclQUdpSocket.cc
|
|
*
|
|
* DO NOT EDIT THIS FILE.
|
|
* This file has been created automatically
|
|
*/
|
|
|
|
#include <QUdpSocket>
|
|
#include <QAuthenticator>
|
|
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QHostAddress>
|
|
#include <QNetworkProxy>
|
|
#include <QObject>
|
|
#include <QThread>
|
|
#include <QTimerEvent>
|
|
#include "gsiQt.h"
|
|
#include "gsiQtCommon.h"
|
|
#include "gsiDeclQtTypeTraits.h"
|
|
#include <memory>
|
|
|
|
// -----------------------------------------------------------------------
|
|
// class QUdpSocket
|
|
|
|
// get static meta object
|
|
|
|
static void _init_smo (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
decl->set_return<const QMetaObject &> ();
|
|
}
|
|
|
|
static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret)
|
|
{
|
|
ret.write<const QMetaObject &> (QUdpSocket::staticMetaObject);
|
|
}
|
|
|
|
|
|
// Constructor QUdpSocket::QUdpSocket(QObject *parent)
|
|
|
|
|
|
static void _init_ctor_QUdpSocket_1302 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("parent", true, "0");
|
|
decl->add_arg<QObject * > (argspec_0);
|
|
decl->set_return_new<QUdpSocket> ();
|
|
}
|
|
|
|
static void _call_ctor_QUdpSocket_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
QObject *arg1 = args ? args.read<QObject * > (heap) : (QObject *)(0);
|
|
ret.write<QUdpSocket *> (new QUdpSocket (arg1));
|
|
}
|
|
|
|
|
|
// bool QUdpSocket::bind(const QHostAddress &address, quint16 port)
|
|
|
|
|
|
static void _init_f_bind_3510 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("address");
|
|
decl->add_arg<const QHostAddress & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("port");
|
|
decl->add_arg<quint16 > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_bind_3510 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QHostAddress &arg1 = args.read<const QHostAddress & > (heap);
|
|
quint16 arg2 = args.read<quint16 > (heap);
|
|
ret.write<bool > ((bool)((QUdpSocket *)cls)->bind (arg1, arg2));
|
|
}
|
|
|
|
|
|
// bool QUdpSocket::bind(quint16 port)
|
|
|
|
|
|
static void _init_f_bind_1100 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("port", true, "0");
|
|
decl->add_arg<quint16 > (argspec_0);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_bind_1100 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
quint16 arg1 = args ? args.read<quint16 > (heap) : (quint16)(0);
|
|
ret.write<bool > ((bool)((QUdpSocket *)cls)->bind (arg1));
|
|
}
|
|
|
|
|
|
// bool QUdpSocket::bind(const QHostAddress &address, quint16 port, QFlags<QUdpSocket::BindFlag> mode)
|
|
|
|
|
|
static void _init_f_bind_6404 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("address");
|
|
decl->add_arg<const QHostAddress & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("port");
|
|
decl->add_arg<quint16 > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("mode");
|
|
decl->add_arg<QFlags<QUdpSocket::BindFlag> > (argspec_2);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_bind_6404 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QHostAddress &arg1 = args.read<const QHostAddress & > (heap);
|
|
quint16 arg2 = args.read<quint16 > (heap);
|
|
QFlags<QUdpSocket::BindFlag> arg3 = args.read<QFlags<QUdpSocket::BindFlag> > (heap);
|
|
ret.write<bool > ((bool)((QUdpSocket *)cls)->bind (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// bool QUdpSocket::bind(quint16 port, QFlags<QUdpSocket::BindFlag> mode)
|
|
|
|
|
|
static void _init_f_bind_3994 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("port");
|
|
decl->add_arg<quint16 > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("mode");
|
|
decl->add_arg<QFlags<QUdpSocket::BindFlag> > (argspec_1);
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_bind_3994 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
quint16 arg1 = args.read<quint16 > (heap);
|
|
QFlags<QUdpSocket::BindFlag> arg2 = args.read<QFlags<QUdpSocket::BindFlag> > (heap);
|
|
ret.write<bool > ((bool)((QUdpSocket *)cls)->bind (arg1, arg2));
|
|
}
|
|
|
|
|
|
// bool QUdpSocket::hasPendingDatagrams()
|
|
|
|
|
|
static void _init_f_hasPendingDatagrams_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<bool > ();
|
|
}
|
|
|
|
static void _call_f_hasPendingDatagrams_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<bool > ((bool)((QUdpSocket *)cls)->hasPendingDatagrams ());
|
|
}
|
|
|
|
|
|
// qint64 QUdpSocket::pendingDatagramSize()
|
|
|
|
|
|
static void _init_f_pendingDatagramSize_c0 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
decl->set_return<qint64 > ();
|
|
}
|
|
|
|
static void _call_f_pendingDatagramSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
ret.write<qint64 > ((qint64)((QUdpSocket *)cls)->pendingDatagramSize ());
|
|
}
|
|
|
|
|
|
// qint64 QUdpSocket::writeDatagram(const char *data, qint64 len, const QHostAddress &host, quint16 port)
|
|
|
|
|
|
static void _init_f_writeDatagram_6011 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("data");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("len");
|
|
decl->add_arg<qint64 > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("host");
|
|
decl->add_arg<const QHostAddress & > (argspec_2);
|
|
static gsi::ArgSpecBase argspec_3 ("port");
|
|
decl->add_arg<quint16 > (argspec_3);
|
|
decl->set_return<qint64 > ();
|
|
}
|
|
|
|
static void _call_f_writeDatagram_6011 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
qint64 arg2 = args.read<qint64 > (heap);
|
|
const QHostAddress &arg3 = args.read<const QHostAddress & > (heap);
|
|
quint16 arg4 = args.read<quint16 > (heap);
|
|
ret.write<qint64 > ((qint64)((QUdpSocket *)cls)->writeDatagram (arg1, arg2, arg3, arg4));
|
|
}
|
|
|
|
|
|
// qint64 QUdpSocket::writeDatagram(const QByteArray &datagram, const QHostAddress &host, quint16 port)
|
|
|
|
|
|
static void _init_f_writeDatagram_5711 (qt_gsi::GenericMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("datagram");
|
|
decl->add_arg<const QByteArray & > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("host");
|
|
decl->add_arg<const QHostAddress & > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("port");
|
|
decl->add_arg<quint16 > (argspec_2);
|
|
decl->set_return<qint64 > ();
|
|
}
|
|
|
|
static void _call_f_writeDatagram_5711 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const QByteArray &arg1 = args.read<const QByteArray & > (heap);
|
|
const QHostAddress &arg2 = args.read<const QHostAddress & > (heap);
|
|
quint16 arg3 = args.read<quint16 > (heap);
|
|
ret.write<qint64 > ((qint64)((QUdpSocket *)cls)->writeDatagram (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QString QUdpSocket::tr(const char *s, const char *c)
|
|
|
|
|
|
static void _init_f_tr_3354 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<QString > ((QString)QUdpSocket::tr (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QUdpSocket::tr(const char *s, const char *c, int n)
|
|
|
|
|
|
static void _init_f_tr_4013 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("n");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args.read<const char * > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
ret.write<QString > ((QString)QUdpSocket::tr (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
// static QString QUdpSocket::trUtf8(const char *s, const char *c)
|
|
|
|
|
|
static void _init_f_trUtf8_3354 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c", true, "0");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args ? args.read<const char * > (heap) : (const char *)(0);
|
|
ret.write<QString > ((QString)QUdpSocket::trUtf8 (arg1, arg2));
|
|
}
|
|
|
|
|
|
// static QString QUdpSocket::trUtf8(const char *s, const char *c, int n)
|
|
|
|
|
|
static void _init_f_trUtf8_4013 (qt_gsi::GenericStaticMethod *decl)
|
|
{
|
|
static gsi::ArgSpecBase argspec_0 ("s");
|
|
decl->add_arg<const char * > (argspec_0);
|
|
static gsi::ArgSpecBase argspec_1 ("c");
|
|
decl->add_arg<const char * > (argspec_1);
|
|
static gsi::ArgSpecBase argspec_2 ("n");
|
|
decl->add_arg<int > (argspec_2);
|
|
decl->set_return<QString > ();
|
|
}
|
|
|
|
static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret)
|
|
{
|
|
__SUPPRESS_UNUSED_WARNING(args);
|
|
tl::Heap heap;
|
|
const char *arg1 = args.read<const char * > (heap);
|
|
const char *arg2 = args.read<const char * > (heap);
|
|
int arg3 = args.read<int > (heap);
|
|
ret.write<QString > ((QString)QUdpSocket::trUtf8 (arg1, arg2, arg3));
|
|
}
|
|
|
|
|
|
|
|
namespace gsi
|
|
{
|
|
|
|
static gsi::Methods methods_QUdpSocket () {
|
|
gsi::Methods methods;
|
|
methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QUdpSocket::QUdpSocket(QObject *parent)\nThis method creates an object of class QUdpSocket.", &_init_ctor_QUdpSocket_1302, &_call_ctor_QUdpSocket_1302);
|
|
methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo);
|
|
methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QUdpSocket::bind(const QHostAddress &address, quint16 port)\n", false, &_init_f_bind_3510, &_call_f_bind_3510);
|
|
methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QUdpSocket::bind(quint16 port)\n", false, &_init_f_bind_1100, &_call_f_bind_1100);
|
|
methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QUdpSocket::bind(const QHostAddress &address, quint16 port, QFlags<QUdpSocket::BindFlag> mode)\n", false, &_init_f_bind_6404, &_call_f_bind_6404);
|
|
methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QUdpSocket::bind(quint16 port, QFlags<QUdpSocket::BindFlag> mode)\n", false, &_init_f_bind_3994, &_call_f_bind_3994);
|
|
methods += new qt_gsi::GenericMethod ("hasPendingDatagrams", "@brief Method bool QUdpSocket::hasPendingDatagrams()\n", true, &_init_f_hasPendingDatagrams_c0, &_call_f_hasPendingDatagrams_c0);
|
|
methods += new qt_gsi::GenericMethod ("pendingDatagramSize", "@brief Method qint64 QUdpSocket::pendingDatagramSize()\n", true, &_init_f_pendingDatagramSize_c0, &_call_f_pendingDatagramSize_c0);
|
|
methods += new qt_gsi::GenericMethod ("writeDatagram", "@brief Method qint64 QUdpSocket::writeDatagram(const char *data, qint64 len, const QHostAddress &host, quint16 port)\n", false, &_init_f_writeDatagram_6011, &_call_f_writeDatagram_6011);
|
|
methods += new qt_gsi::GenericMethod ("writeDatagram", "@brief Method qint64 QUdpSocket::writeDatagram(const QByteArray &datagram, const QHostAddress &host, quint16 port)\n", false, &_init_f_writeDatagram_5711, &_call_f_writeDatagram_5711);
|
|
methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QUdpSocket::aboutToClose()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<qint64 > ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QUdpSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QUdpSocket::connected()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<QObject * > ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QUdpSocket::destroyed(QObject *)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("disconnected()", "disconnected", "@brief Signal declaration for QUdpSocket::disconnected()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const qt_gsi::Converter<QAbstractSocket::SocketError>::target_type & > ("error(QAbstractSocket::SocketError)", "error_sig", gsi::arg("arg1"), "@brief Signal declaration for QUdpSocket::error(QAbstractSocket::SocketError)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("hostFound()", "hostFound", "@brief Signal declaration for QUdpSocket::hostFound()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const QNetworkProxy &, QAuthenticator * > ("proxyAuthenticationRequired(const QNetworkProxy &, QAuthenticator *)", "proxyAuthenticationRequired", gsi::arg("proxy"), gsi::arg("authenticator"), "@brief Signal declaration for QUdpSocket::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator)\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("readChannelFinished()", "readChannelFinished", "@brief Signal declaration for QUdpSocket::readChannelFinished()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal ("readyRead()", "readyRead", "@brief Signal declaration for QUdpSocket::readyRead()\nYou can bind a procedure to this signal.");
|
|
methods += gsi::qt_signal<const qt_gsi::Converter<QAbstractSocket::SocketState>::target_type & > ("stateChanged(QAbstractSocket::SocketState)", "stateChanged", gsi::arg("arg1"), "@brief Signal declaration for QUdpSocket::stateChanged(QAbstractSocket::SocketState)\nYou can bind a procedure to this signal.");
|
|
methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QUdpSocket::tr(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_tr_3354, &_call_f_tr_3354);
|
|
methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QUdpSocket::tr(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_tr_4013, &_call_f_tr_4013);
|
|
methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QUdpSocket::trUtf8(const char *s, const char *c)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_3354, &_call_f_trUtf8_3354);
|
|
methods += new qt_gsi::GenericStaticMethod ("trUtf8", "@brief Static method QString QUdpSocket::trUtf8(const char *s, const char *c, int n)\nThis method is static and can be called without an instance.", &_init_f_trUtf8_4013, &_call_f_trUtf8_4013);
|
|
return methods;
|
|
}
|
|
|
|
gsi::Class<QAbstractSocket> &qtdecl_QAbstractSocket ();
|
|
|
|
qt_gsi::QtNativeClass<QUdpSocket> decl_QUdpSocket (qtdecl_QAbstractSocket (), "QUdpSocket",
|
|
methods_QUdpSocket (),
|
|
"@qt\n@brief Binding of QUdpSocket");
|
|
|
|
|
|
GSIQT_PUBLIC gsi::Class<QUdpSocket> &qtdecl_QUdpSocket () { return decl_QUdpSocket; }
|
|
|
|
}
|
|
|
|
|
|
// Implementation of the enum wrapper class for QUdpSocket::BindFlag
|
|
namespace qt_gsi
|
|
{
|
|
|
|
static gsi::Enum<QUdpSocket::BindFlag> decl_QUdpSocket_BindFlag_Enum ("QUdpSocket_BindFlag",
|
|
gsi::enum_const ("DefaultForPlatform", QUdpSocket::DefaultForPlatform, "@brief Enum constant QUdpSocket::DefaultForPlatform") +
|
|
gsi::enum_const ("ShareAddress", QUdpSocket::ShareAddress, "@brief Enum constant QUdpSocket::ShareAddress") +
|
|
gsi::enum_const ("DontShareAddress", QUdpSocket::DontShareAddress, "@brief Enum constant QUdpSocket::DontShareAddress") +
|
|
gsi::enum_const ("ReuseAddressHint", QUdpSocket::ReuseAddressHint, "@brief Enum constant QUdpSocket::ReuseAddressHint"),
|
|
"@qt\n@brief This class represents the QUdpSocket::BindFlag enum");
|
|
|
|
static gsi::QFlagsClass<QUdpSocket::BindFlag > decl_QUdpSocket_BindFlag_Enums ("QUdpSocket_QFlags_BindFlag",
|
|
"@qt\n@brief This class represents the QFlags<QUdpSocket::BindFlag> flag set");
|
|
|
|
// Inject the declarations into the parent
|
|
static gsi::ClassExt<QUdpSocket> inject_QUdpSocket_BindFlag_Enum_in_parent (decl_QUdpSocket_BindFlag_Enum.defs ());
|
|
static gsi::ClassExt<QUdpSocket> decl_QUdpSocket_BindFlag_Enum_as_child (decl_QUdpSocket_BindFlag_Enum, "BindFlag");
|
|
static gsi::ClassExt<QUdpSocket> decl_QUdpSocket_BindFlag_Enums_as_child (decl_QUdpSocket_BindFlag_Enums, "QFlags_BindFlag");
|
|
|
|
}
|
|
|