diff --git a/scripts/mkqtdecl5/mkqtdecl.conf b/scripts/mkqtdecl5/mkqtdecl.conf index 6ddb717ea..fa388a588 100644 --- a/scripts/mkqtdecl5/mkqtdecl.conf +++ b/scripts/mkqtdecl5/mkqtdecl.conf @@ -226,6 +226,9 @@ drop_class "QVectorIterator" drop_class "QVectorTypedData" drop_enum_const "QEvent", /CocoaRequestModal/ # not available on WIN + +drop_method "QMetaType", /QMetaType::staticMetaObject/ # not available +drop_method "QMetaType", /QMetaType::registerNormalizedType/ # needs function ptrs. drop_method "QCollator", /QCollator::compare\(.*QStringRef/ # clashes with QString version drop_method "QLocale", /QLocale::(toDouble|toFloat|toInt|toLongLong|toShort|quoteString|toUInt|toULongLong|toUShort)\(.*QStringRef/ # clashes with QString version drop_method "QRegularExpression", /QRegularExpression::(match|globalMatch)\(.*QStringRef/ # clashes with QString version @@ -640,11 +643,11 @@ include "QVector3D", [ "", "", "" ] include "QVector4D", [ "", "", "" ] include "QAction", [ "", "", "" ] include "QCursor", [ "", "", "" ] -include "QGraphicsItem", [ "", "", "", "", "", "", "", "", "", "", "" ] +include "QGraphicsItem", [ "", "", "", "", "", "", "", "", "", "", "", "" ] include "QGraphicsScene", [ "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", "" ] -include "QGuiApplication", [ "", "", "", "", "", "" ] +include "QGuiApplication", [ "", "", "", "", "", "", "", "" ] include "QApplication", [ "", "", "", "", "", "" ] -include "QWindow", [ "", "" ] +include "QWindow", [ "", "", "" ] include "QOffscreenSurface", [ "", "" ] include "QScreenOrientationChangeEvent", [ "", "" ] @@ -864,7 +867,7 @@ no_copy_ctor "QIconEngine" # QtXml include "QXmlFormatter", [ "", "" ] -include "QXmlSerializer", [ "", "" ] +include "QXmlSerializer", [ "", "", "" ] no_imports "QXmlStreamAttributes" # base class is a template. @@ -997,7 +1000,7 @@ final_class "QFormBuilder" # requires a lot of Dom* classes include "QCamera", [ "", "", "", "", "" ] include "QAudioBuffer", [ "" ] include "QBackingStore", [ "" ] -include "QMediaPlayer", [ "", "", "", "", "" ] +include "QMediaPlayer", [ "", "", "", "", "", "" ] drop_class "QAudioBuffer", /StereoFrameDefault/ drop_class "QAudioBuffer", /StereoFrame/ diff --git a/src/gsi/gsi/gsiSerialisation.h b/src/gsi/gsi/gsiSerialisation.h index a9437c021..4ebe66fe9 100644 --- a/src/gsi/gsi/gsiSerialisation.h +++ b/src/gsi/gsi/gsiSerialisation.h @@ -984,6 +984,8 @@ private: mutable QByteArray m_s_utf8; }; +#endif + /** * @brief Specialization for QLatin1String */ @@ -1023,12 +1025,12 @@ public: virtual size_t size () const { - return mp_s->toString ().toUtf8 ().size (); + return QString::fromLatin1 (mp_s->data (), mp_s->size ()).toUtf8 ().size (); } virtual const char *c_str () const { - m_s_utf8 = mp_s->toString ().toUtf8 (); + m_s_utf8 = QString::fromLatin1 (mp_s->data (), mp_s->size ()).toUtf8 (); return m_s_utf8.constData (); } @@ -1050,8 +1052,6 @@ private: #endif -#endif - /** * @brief Specialization for std::string */ diff --git a/src/gsi/gsi/gsiTypes.h b/src/gsi/gsi/gsiTypes.h index c7cbec2b1..69a8caee0 100644 --- a/src/gsi/gsi/gsiTypes.h +++ b/src/gsi/gsi/gsiTypes.h @@ -46,9 +46,9 @@ #include #include #include +#include # if QT_VERSION >= 0x60000 # include -# include # include # endif #endif @@ -449,9 +449,9 @@ template <> struct type_traits : generic_type_trait template <> struct type_traits > : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; template struct type_traits > : generic_type_traits { }; +template <> struct type_traits : generic_type_traits { }; #if QT_VERSION >= 0x60000 template <> struct type_traits : generic_type_traits { }; -template <> struct type_traits : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; #endif #endif @@ -491,9 +491,9 @@ template <> struct type_traits : generic_type_trait template <> struct type_traits &> : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; template struct type_traits &> : generic_type_traits { }; +template <> struct type_traits : generic_type_traits { }; #if QT_VERSION >= 0x60000 template <> struct type_traits : generic_type_traits { }; -template <> struct type_traits : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; #endif #endif @@ -530,9 +530,9 @@ template <> struct type_traits : generic_type_trait template <> struct type_traits &> : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; template struct type_traits &> : generic_type_traits { }; +template <> struct type_traits : generic_type_traits { }; #if QT_VERSION >= 0x60000 template <> struct type_traits : generic_type_traits { }; -template <> struct type_traits : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; #endif #endif @@ -570,9 +570,9 @@ template <> struct type_traits : generic_type_trait template <> struct type_traits *> : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; template struct type_traits *> : generic_type_traits { }; +template <> struct type_traits : generic_type_traits { }; #if QT_VERSION >= 0x60000 template <> struct type_traits : generic_type_traits { }; -template <> struct type_traits : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; #endif #endif @@ -610,9 +610,9 @@ template <> struct type_traits : generic_type_trait template <> struct type_traits *> : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; template struct type_traits *> : generic_type_traits { }; +template <> struct type_traits : generic_type_traits { }; #if QT_VERSION >= 0x60000 template <> struct type_traits : generic_type_traits { }; -template <> struct type_traits : generic_type_traits { }; template <> struct type_traits : generic_type_traits { }; #endif #endif diff --git a/src/gsiqt/qt5/QtCore/QtCore.pri b/src/gsiqt/qt5/QtCore/QtCore.pri index 7f44711e7..04b0ffc6b 100644 --- a/src/gsiqt/qt5/QtCore/QtCore.pri +++ b/src/gsiqt/qt5/QtCore/QtCore.pri @@ -92,6 +92,7 @@ SOURCES += \ $$PWD/gsiDeclQMetaObject.cc \ $$PWD/gsiDeclQMetaObject_Connection.cc \ $$PWD/gsiDeclQMetaProperty.cc \ + $$PWD/gsiDeclQMetaType.cc \ $$PWD/gsiDeclQMimeData.cc \ $$PWD/gsiDeclQMimeDatabase.cc \ $$PWD/gsiDeclQMimeType.cc \ diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc index 18554cee5..d9ac6dad1 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc index e26bfad4f..74bddc090 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher_TimerInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher_TimerInfo.cc index 940806394..7f8d667d5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher_TimerInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher_TimerInfo.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc index d5fff419e..eba78c087 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc index b0df4e5f4..35179103d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc index c0c984a9a..278e08ba9 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc index 58ecfaad1..e0029df47 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc index 5f73451ad..190a2bd14 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc index 1d18b7901..0fb5958d9 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc index 4ce4d230d..18d29214c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc index d321f9d1d..b5f37a957 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc index 19a6a1383..ac3658fc0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAssociativeIterable.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAssociativeIterable.cc index f6e8ffdc4..63370acf7 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAssociativeIterable.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAssociativeIterable.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQBasicMutex.cc b/src/gsiqt/qt5/QtCore/gsiDeclQBasicMutex.cc index dc2bd073b..40eae4336 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQBasicMutex.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQBasicMutex.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQBasicTimer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQBasicTimer.cc index 70c4eb07e..d1e7dddae 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQBasicTimer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQBasicTimer.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc index 71387486d..b16fb86f6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayDataPtr.cc b/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayDataPtr.cc index bbbcf29a3..666727d47 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayDataPtr.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayDataPtr.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayMatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayMatcher.cc index 496155097..6fb031331 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayMatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayMatcher.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQChildEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQChildEvent.cc index 55b9ecd02..2feb29946 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQChildEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQChildEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCollator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCollator.cc index b47a5a4a4..8b9c5ca25 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCollator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCollator.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCollatorSortKey.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCollatorSortKey.cc index 274e6dc46..2af139735 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCollatorSortKey.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCollatorSortKey.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineOption.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineOption.cc index b5c7f8d77..58bac9380 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineOption.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineOption.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineParser.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineParser.cc index 6dbc3e780..6d303bb16 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineParser.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineParser.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc index 79f4ca2dc..583ac6e4f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCryptographicHash.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCryptographicHash.cc index 6133df654..da37f167e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCryptographicHash.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCryptographicHash.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDataStream.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDataStream.cc index f2490855b..d5d533698 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDataStream.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDataStream.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- @@ -113,25 +112,25 @@ return v; } - static qt_gsi::Converter::target_type f_QDataStream_read_qchar(QDataStream *s) + static qt_gsi::Converter::target_type f_QDataStream_read_qchar(QDataStream *s) { - QChar v = 0; + QChar v = QChar (0); *s >> v; - return qt_gsi::Converter::toc (v); + return qt_gsi::Converter::toc (v); } - static qt_gsi::Converter >::target_type f_QDataStream_read_int_list(QDataStream *s) + static qt_gsi::Converter >::target_type f_QDataStream_read_int_list(QDataStream *s) { QList v; *s >> v; - return qt_gsi::Converter >::toc (v); + return qt_gsi::Converter >::toc (v); } - static qt_gsi::Converter >::target_type f_QDataStream_read_int_vector(QDataStream *s) + static qt_gsi::Converter >::target_type f_QDataStream_read_int_vector(QDataStream *s) { QVector v; *s >> v; - return qt_gsi::Converter >::toc (v); + return qt_gsi::Converter >::toc (v); } static QString f_QDataStream_read_string(QDataStream *s) @@ -214,21 +213,21 @@ return s; } - static QDataStream *f_QDataStream_put_qchar(QDataStream *s, const qt_gsi::Converter::target_type &v) + static QDataStream *f_QDataStream_put_qchar(QDataStream *s, const qt_gsi::Converter::target_type &v) { - *s << qt_gsi::Converter::toq (v); + *s << qt_gsi::Converter::toq (v); return s; } - static QDataStream *f_QDataStream_put_int_list(QDataStream *s, const qt_gsi::Converter >::target_type &v) + static QDataStream *f_QDataStream_put_int_list(QDataStream *s, const qt_gsi::Converter >::target_type &v) { - *s << qt_gsi::Converter >::toq (v); + *s << qt_gsi::Converter >::toq (v); return s; } - static QDataStream *f_QDataStream_put_int_vector(QDataStream *s, const qt_gsi::Converter >::target_type &v) + static QDataStream *f_QDataStream_put_int_vector(QDataStream *s, const qt_gsi::Converter >::target_type &v) { - *s << qt_gsi::Converter >::toq (v); + *s << qt_gsi::Converter >::toq (v); return s; } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDate.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDate.cc index 82e29afc5..6ff4eaa23 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDate.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDate.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDateTime.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDateTime.cc index 317d77728..fecea1941 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDateTime.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDateTime.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDebug.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDebug.cc index 4d64eca6c..a04bee972 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDebug.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDebug.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDebugStateSaver.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDebugStateSaver.cc index 521185388..28af0fef8 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDebugStateSaver.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDebugStateSaver.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDeferredDeleteEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDeferredDeleteEvent.cc index 856b1d269..0bc9f2431 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDeferredDeleteEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDeferredDeleteEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDir.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDir.cc index b78b409c5..8e9848a80 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDir.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDir.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDirIterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDirIterator.cc index c6272f0a8..d8fb64941 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDirIterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDirIterator.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc index 2318aa8c2..89df21b8d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEasingCurve.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEasingCurve.cc index 447d3a8d3..30700cbfa 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEasingCurve.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEasingCurve.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQElapsedTimer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQElapsedTimer.cc index 8384ba3f3..044a38144 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQElapsedTimer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQElapsedTimer.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEvent.cc index 2c42a13dd..6454d4c6a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEvent.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc index 8ed7c63c7..cd37c158b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoopLocker.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoopLocker.cc index 739921026..3900c633d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoopLocker.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoopLocker.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc index cfb4dc2ae..ec1491353 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFactoryInterface.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFactoryInterface.cc index 8f7dfc9ec..75b8910c8 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFactoryInterface.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFactoryInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc index 04115b5b9..ac69e9e81 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc index 09bb43b8f..ae446feac 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileInfo.cc index 7a72d1261..319ad3df5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileInfo.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc index 300ace496..b9a11e18a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc index 9b9bb89cd..6d8b26334 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc index 82fa36859..538015766 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc index d2ebf358d..25b41a05b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQIODevice.cc b/src/gsiqt/qt5/QtCore/gsiDeclQIODevice.cc index 6d6bda6f5..ceea752d2 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQIODevice.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQIODevice.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc index 193645c83..50243d6ff 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelection.cc b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelection.cc index c4cb1f94d..08d1cc46d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelection.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelection.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc index 1e69ffe50..7d2479e44 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionRange.cc b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionRange.cc index fb6a20b81..c69124e4b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionRange.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionRange.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray.cc index 5433380ec..74fe966ba 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Const_iterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Const_iterator.cc index d83b2cc43..a3f80327c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Const_iterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Const_iterator.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Iterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Iterator.cc index 05869f481..289d41a64 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Iterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Iterator.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonDocument.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonDocument.cc index 2c4e62250..33de20efe 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonDocument.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonDocument.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject.cc index c68478d64..9be4039c0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Const_iterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Const_iterator.cc index 377bf161b..eacf79dac 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Const_iterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Const_iterator.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Iterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Iterator.cc index 30bcae533..595efd5ee 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Iterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Iterator.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonParseError.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonParseError.cc index c896bdb75..3ad213a24 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonParseError.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonParseError.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValue.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValue.cc index c5dfbff8c..3a1b4430a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValue.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValue.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValuePtr.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValuePtr.cc index 5a03882b6..4e1f254e0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValuePtr.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValuePtr.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRef.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRef.cc index 87ed366fe..4e8ef1eaa 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRef.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRef.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRefPtr.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRefPtr.cc index b9eab1890..ac3e00d4c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRefPtr.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRefPtr.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc index 766a0a25b..1e4a69f53 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLibraryInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLibraryInfo.cc index ae4e317f9..4fe90820a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLibraryInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLibraryInfo.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLine.cc index f66d4c0d2..07e016369 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLine.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLineF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLineF.cc index f045a66a9..91155585b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLineF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLineF.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLocale.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLocale.cc index f0eeffb34..b8bfab3a5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLocale.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLocale.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLockFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLockFile.cc index 4fc47cfc2..c5384d125 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLockFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLockFile.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLoggingCategory.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLoggingCategory.cc index 283305550..e72d67233 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLoggingCategory.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLoggingCategory.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMapDataBase.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMapDataBase.cc index 947f91ae7..477fef282 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMapDataBase.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMapDataBase.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMapNodeBase.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMapNodeBase.cc index 38ab0ab4c..31b1734d0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMapNodeBase.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMapNodeBase.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMargins.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMargins.cc index bdd495ba9..cd1027371 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMargins.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMargins.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMarginsF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMarginsF.cc index d394852fb..726eb2cfd 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMarginsF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMarginsF.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMessageAuthenticationCode.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMessageAuthenticationCode.cc index 7c802586b..b88e40fb7 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMessageAuthenticationCode.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMessageAuthenticationCode.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogContext.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogContext.cc index 3e0fca6bf..b49557e01 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogContext.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogContext.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogger.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogger.cc index e0df018fc..56c84a19f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogger.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogger.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaClassInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaClassInfo.cc index 2e36308ee..1a2a9cf12 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaClassInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaClassInfo.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaEnum.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaEnum.cc index 4f1d0ae56..e17f08f59 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaEnum.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaEnum.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaMethod.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaMethod.cc index 16db5a42d..35e82fc10 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaMethod.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaMethod.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject.cc index f78985b67..171f491e0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject_Connection.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject_Connection.cc index 095e07319..e33791ee4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject_Connection.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject_Connection.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaProperty.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaProperty.cc index d8722d356..015c2c385 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaProperty.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaProperty.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc index db760f6a8..737513944 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMimeDatabase.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMimeDatabase.cc index b49edaeb2..355b135d5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMimeDatabase.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMimeDatabase.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMimeType.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMimeType.cc index 9cfcec2ba..352d5de3c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMimeType.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMimeType.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQModelIndex.cc b/src/gsiqt/qt5/QtCore/gsiDeclQModelIndex.cc index 29354f377..921bcc10b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQModelIndex.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQModelIndex.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc index adfcd0549..bed7d9a2a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQNoDebug.cc b/src/gsiqt/qt5/QtCore/gsiDeclQNoDebug.cc index 54019a386..34a37a8cc 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQNoDebug.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQNoDebug.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc b/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc index 6f10b9fbc..2d6f0b39c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc index 56a193641..0fa52855a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc index f9b3d97a5..f80e0360a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPersistentModelIndex.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPersistentModelIndex.cc index d77fdabb6..f9266ebb4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPersistentModelIndex.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPersistentModelIndex.cc @@ -32,15 +32,21 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- // class QPersistentModelIndex +#if QT_VERSION < 0x60000 static const QModelIndex &castToQModelIndex(const QPersistentModelIndex *m) { return m->operator const QModelIndex &(); } +#else + static QModelIndex castToQModelIndex(const QPersistentModelIndex *m) + { + return m->operator QModelIndex(); + } +#endif // Constructor QPersistentModelIndex::QPersistentModelIndex() diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc index 71d8f4e13..82fca23e4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPoint.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPoint.cc index 70826cdfe..8c59cd8c6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPoint.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPoint.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPointF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPointF.cc index 29b75a47e..b925ab02f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPointF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPointF.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc b/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc index ff1ab5151..ed537d8a6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQProcessEnvironment.cc b/src/gsiqt/qt5/QtCore/gsiDeclQProcessEnvironment.cc index c5d589e98..af246184c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQProcessEnvironment.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQProcessEnvironment.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc index aaeacfd38..68fcd6c4c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQReadLocker.cc b/src/gsiqt/qt5/QtCore/gsiDeclQReadLocker.cc index 94ad81620..25a01c970 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQReadLocker.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQReadLocker.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQReadWriteLock.cc b/src/gsiqt/qt5/QtCore/gsiDeclQReadWriteLock.cc index 5755c2881..6745995e9 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQReadWriteLock.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQReadWriteLock.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRect.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRect.cc index 694ebab32..3ece205ba 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRect.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRect.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRectF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRectF.cc index f6092e485..50c192b44 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRectF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRectF.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRegExp.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRegExp.cc index 6bfa7a838..ae48bb858 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRegExp.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRegExp.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpression.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpression.cc index f25476c74..93a52feeb 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpression.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpression.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatch.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatch.cc index 195aa8505..5b397c83c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatch.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatch.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatchIterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatchIterator.cc index a5865956d..ba69de49d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatchIterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatchIterator.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQResource.cc b/src/gsiqt/qt5/QtCore/gsiDeclQResource.cc index fa81cf651..440c2bd99 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQResource.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQResource.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRunnable.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRunnable.cc index 99b1ea4e8..fdae4379c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRunnable.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRunnable.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc index ecce98d7f..aab52a84c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSemaphore.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSemaphore.cc index d2392d907..361cd057c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSemaphore.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSemaphore.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc index 6641ae8e0..3775e6e8e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialIterable.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialIterable.cc index 4b3bcf6b1..4383c8f9b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialIterable.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialIterable.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc index b20ec8e30..98c65bb6a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc index a357dba2c..2ee01a256 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSignalBlocker.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSignalBlocker.cc index 6712a051d..1b19e7cf9 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSignalBlocker.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSignalBlocker.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc index e078590fd..8de22342d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc index 80612fe5f..ef725015f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSize.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSize.cc index 4ae73964e..ccd79ad7f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSize.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSize.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSizeF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSizeF.cc index 6f7e76317..e33cad502 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSizeF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSizeF.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc index f8ce8776e..efb0f35f1 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc index 3ce4799b2..0342083fa 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc @@ -44,7 +44,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStandardPaths.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStandardPaths.cc index 73579aba5..6e0c3acbc 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStandardPaths.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStandardPaths.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQState.cc index 2f13e46f5..bb6bf3be5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQState.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc index 4aca49f23..f12bb3a07 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_SignalEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_SignalEvent.cc index 9a5e7dd04..2ed9f64fd 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_SignalEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_SignalEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_WrappedEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_WrappedEvent.cc index be6cda179..35ac173ac 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_WrappedEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_WrappedEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStaticPlugin.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStaticPlugin.cc index 511e3faba..d3eac285f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStaticPlugin.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStaticPlugin.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStorageInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStorageInfo.cc index fb206342a..c4cb35c09 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStorageInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStorageInfo.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStringDataPtr.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStringDataPtr.cc index f624db80e..9bb23d752 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStringDataPtr.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStringDataPtr.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc index ca1a0124b..c8ecf1f1a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStringMatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStringMatcher.cc index dc24ab95b..e06e6e8f3 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStringMatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStringMatcher.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSysInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSysInfo.cc index 975dcd2d0..a1ca4f484 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSysInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSysInfo.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSystemSemaphore.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSystemSemaphore.cc index 20db0c101..3c6452dc7 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSystemSemaphore.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSystemSemaphore.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryDir.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryDir.cc index be210b292..7e096857c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryDir.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryDir.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc index b6c9aacd7..57a438b29 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextBoundaryFinder.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextBoundaryFinder.cc index 9660f7849..dcbf9f760 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextBoundaryFinder.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextBoundaryFinder.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc index 40ed02afd..777bf2410 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec_ConverterState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec_ConverterState.cc index 99448b794..39ecad5f5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec_ConverterState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec_ConverterState.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextDecoder.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextDecoder.cc index 3621ffa6c..44bc8c11e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextDecoder.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextDecoder.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextEncoder.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextEncoder.cc index d083bb5b1..14273ea3f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextEncoder.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextEncoder.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextStream.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextStream.cc index 2dead5b70..b1100b32f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextStream.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextStream.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- @@ -96,7 +95,7 @@ static qt_gsi::Converter::target_type f_QTextStream_read_qchar(QTextStream *s) { - QChar v = 0; + QChar v = QChar (0); *s >> v; return qt_gsi::Converter::toc (v); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc b/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc index d40cd0c39..d68d86f56 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc b/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc index f83046c12..52d670aef 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTime.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTime.cc index fd212ca2c..b1902e251 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTime.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTime.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc index 018c55563..f28a5e6d6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone.cc index d24f3526c..eafb65777 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone_OffsetData.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone_OffsetData.cc index b93478fcb..b07b29362 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone_OffsetData.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone_OffsetData.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc index 5ad676724..bb3a30b35 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimerEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimerEvent.cc index 992a85d1d..4947dda0d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimerEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimerEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc index 37ff60ecc..4d17469ac 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQUrl.cc b/src/gsiqt/qt5/QtCore/gsiDeclQUrl.cc index 8d59d90f0..422a38997 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQUrl.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQUrl.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQUrlQuery.cc b/src/gsiqt/qt5/QtCore/gsiDeclQUrlQuery.cc index dd3e07ea1..07564414f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQUrlQuery.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQUrlQuery.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc index 91ece898d..d66054395 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQWaitCondition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQWaitCondition.cc index 89ec8c3da..d3158ab22 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQWaitCondition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQWaitCondition.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQWriteLocker.cc b/src/gsiqt/qt5/QtCore/gsiDeclQWriteLocker.cc index 8980666bc..f4e70f987 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQWriteLocker.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQWriteLocker.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttribute.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttribute.cc index 14ece101c..e144b8c62 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttribute.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttribute.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttributes.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttributes.cc index 40f3abf82..ce0d08725 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttributes.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttributes.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityDeclaration.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityDeclaration.cc index c4e4b48d5..40c6bcabd 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityDeclaration.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityDeclaration.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc index cd6eb500c..20f7c3659 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNamespaceDeclaration.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNamespaceDeclaration.cc index 1d9be7604..abed09fd2 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNamespaceDeclaration.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNamespaceDeclaration.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNotationDeclaration.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNotationDeclaration.cc index 3a092c149..79242f849 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNotationDeclaration.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNotationDeclaration.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamReader.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamReader.cc index ff60ae3f0..d688c637c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamReader.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamReader.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamStringRef.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamStringRef.cc index dec4920a5..8f3610f55 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamStringRef.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamStringRef.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamWriter.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamWriter.cc index b8d952560..6ea5181f4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamWriter.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamWriter.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQt.cc b/src/gsiqt/qt5/QtCore/gsiDeclQt.cc index c8e70cc02..bca31c126 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQt.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQt.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQtCoreTypeTraits.h b/src/gsiqt/qt5/QtCore/gsiDeclQtCoreTypeTraits.h deleted file mode 100644 index 5544dbd50..000000000 --- a/src/gsiqt/qt5/QtCore/gsiDeclQtCoreTypeTraits.h +++ /dev/null @@ -1,1579 +0,0 @@ - -/* - - 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 generated/gsiDeclQtCoreTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtCoreTypeTraits -#define _HDR_gsiDeclQtCoreTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQt_1.cc b/src/gsiqt/qt5/QtCore/gsiDeclQt_1.cc index bab2bda46..2d4206cb4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQt_1.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQt_1.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQt_2.cc b/src/gsiqt/qt5/QtCore/gsiDeclQt_2.cc index fb085fec1..722a89d29 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQt_2.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQt_2.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQt_3.cc b/src/gsiqt/qt5/QtCore/gsiDeclQt_3.cc index b9b0dadc0..7eaaa070a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQt_3.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQt_3.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQt_4.cc b/src/gsiqt/qt5/QtCore/gsiDeclQt_4.cc index c67893db3..43b908324 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQt_4.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQt_4.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtCoreCommon.h" -#include "gsiDeclQtCoreTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtCore/gsiQtExternals.h b/src/gsiqt/qt5/QtCore/gsiQtExternals.h index aeef24766..3e81dcc16 100644 --- a/src/gsiqt/qt5/QtCore/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtCore/gsiQtExternals.h @@ -35,1229 +35,634 @@ class QAbstractAnimation; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractAnimation (); } class QAbstractEventDispatcher; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractEventDispatcher (); } class QAbstractItemModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractItemModel (); } class QAbstractListModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractListModel (); } class QAbstractNativeEventFilter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractNativeEventFilter (); } class QAbstractProxyModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractProxyModel (); } class QAbstractState; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractState (); } class QAbstractTableModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractTableModel (); } class QAbstractTransition; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAbstractTransition (); } class QAnimationDriver; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAnimationDriver (); } class QAnimationGroup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAnimationGroup (); } class QAssociativeIterable; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QAssociativeIterable (); } class QBasicMutex; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QBasicMutex (); } class QBasicTimer; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QBasicTimer (); } class QBuffer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QBuffer (); } struct QByteArrayDataPtr; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QByteArrayDataPtr (); } class QByteArrayMatcher; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QByteArrayMatcher (); } class QChildEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QChildEvent (); } class QCollator; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QCollator (); } class QCollatorSortKey; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QCollatorSortKey (); } class QCommandLineOption; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QCommandLineOption (); } class QCommandLineParser; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QCommandLineParser (); } class QCoreApplication; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QCoreApplication (); } class QCryptographicHash; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QCryptographicHash (); } class QDataStream; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDataStream (); } class QDate; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDate (); } class QDateTime; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDateTime (); } class QDebug; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDebug (); } class QDebugStateSaver; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDebugStateSaver (); } class QDeferredDeleteEvent; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDeferredDeleteEvent (); } class QDir; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDir (); } class QDirIterator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDirIterator (); } class QDynamicPropertyChangeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QDynamicPropertyChangeEvent (); } class QEasingCurve; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QEasingCurve (); } class QElapsedTimer; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QElapsedTimer (); } class QEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QEvent (); } class QEventLoop; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QEventLoop (); } class QEventLoopLocker; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QEventLoopLocker (); } class QEventTransition; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QEventTransition (); } struct QFactoryInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QFactoryInterface (); } class QFile; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QFile (); } class QFileDevice; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QFileDevice (); } class QFileInfo; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QFileInfo (); } class QFileSelector; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QFileSelector (); } class QFileSystemWatcher; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QFileSystemWatcher (); } class QFinalState; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QFinalState (); } class QHistoryState; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QHistoryState (); } class QIODevice; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QIODevice (); } class QIdentityProxyModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QIdentityProxyModel (); } class QItemSelection; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QItemSelection (); } class QItemSelectionModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QItemSelectionModel (); } class QItemSelectionRange; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QItemSelectionRange (); } class QJsonArray; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QJsonArray (); } class QJsonDocument; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QJsonDocument (); } class QJsonObject; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QJsonObject (); } struct QJsonParseError; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QJsonParseError (); } class QJsonValue; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QJsonValue (); } class QJsonValuePtr; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QJsonValuePtr (); } class QJsonValueRef; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QJsonValueRef (); } class QJsonValueRefPtr; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QJsonValueRefPtr (); } class QLibrary; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QLibrary (); } class QLibraryInfo; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QLibraryInfo (); } class QLine; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QLine (); } class QLineF; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QLineF (); } class QLocale; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QLocale (); } class QLockFile; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QLockFile (); } class QLoggingCategory; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QLoggingCategory (); } struct QMapDataBase; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMapDataBase (); } struct QMapNodeBase; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMapNodeBase (); } class QMargins; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMargins (); } class QMarginsF; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMarginsF (); } class QMessageAuthenticationCode; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMessageAuthenticationCode (); } class QMessageLogContext; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMessageLogContext (); } class QMessageLogger; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMessageLogger (); } class QMetaClassInfo; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMetaClassInfo (); } class QMetaEnum; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMetaEnum (); } class QMetaMethod; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMetaMethod (); } struct QMetaObject; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMetaObject (); } class QMetaProperty; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMetaProperty (); } -class QMimeData; +class QMetaType; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } +namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMetaType (); } + +class QMimeData; namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMimeData (); } class QMimeDatabase; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMimeDatabase (); } class QMimeType; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMimeType (); } class QModelIndex; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QModelIndex (); } class QMutex; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QMutex (); } class QNoDebug; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QNoDebug (); } class QObject; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QObject (); } class QParallelAnimationGroup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QParallelAnimationGroup (); } class QPauseAnimation; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QPauseAnimation (); } class QPersistentModelIndex; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QPersistentModelIndex (); } class QPluginLoader; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QPluginLoader (); } class QPoint; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QPoint (); } class QPointF; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QPointF (); } class QProcess; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QProcess (); } class QProcessEnvironment; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QProcessEnvironment (); } class QPropertyAnimation; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QPropertyAnimation (); } class QReadLocker; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QReadLocker (); } class QReadWriteLock; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QReadWriteLock (); } class QRect; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QRect (); } class QRectF; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QRectF (); } class QRegExp; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QRegExp (); } class QRegularExpression; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QRegularExpression (); } class QRegularExpressionMatch; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QRegularExpressionMatch (); } class QRegularExpressionMatchIterator; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QRegularExpressionMatchIterator (); } class QResource; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QResource (); } class QRunnable; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QRunnable (); } class QSaveFile; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSaveFile (); } class QSemaphore; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSemaphore (); } class QSequentialAnimationGroup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSequentialAnimationGroup (); } class QSequentialIterable; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSequentialIterable (); } class QSettings; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSettings (); } class QSharedMemory; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSharedMemory (); } class QSignalBlocker; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSignalBlocker (); } class QSignalMapper; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSignalMapper (); } class QSignalTransition; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSignalTransition (); } class QSize; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSize (); } class QSizeF; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSizeF (); } class QSocketNotifier; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSocketNotifier (); } class QSortFilterProxyModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSortFilterProxyModel (); } class QStandardPaths; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QStandardPaths (); } class QState; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QState (); } class QStateMachine; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QStateMachine (); } struct QStaticPlugin; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QStaticPlugin (); } class QStorageInfo; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QStorageInfo (); } struct QStringDataPtr; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QStringDataPtr (); } class QStringListModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QStringListModel (); } class QStringMatcher; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QStringMatcher (); } class QSysInfo; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSysInfo (); } class QSystemSemaphore; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QSystemSemaphore (); } class QTemporaryDir; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTemporaryDir (); } class QTemporaryFile; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTemporaryFile (); } class QTextBoundaryFinder; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTextBoundaryFinder (); } class QTextCodec; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTextCodec (); } class QTextDecoder; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTextDecoder (); } class QTextEncoder; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTextEncoder (); } class QTextStream; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTextStream (); } class QThread; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QThread (); } class QThreadPool; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QThreadPool (); } class QTime; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTime (); } class QTimeLine; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTimeLine (); } class QTimeZone; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTimeZone (); } class QTimer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTimer (); } class QTimerEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTimerEvent (); } class QTranslator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QTranslator (); } class QUrl; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QUrl (); } class QUrlQuery; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QUrlQuery (); } class QVariantAnimation; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QVariantAnimation (); } class QWaitCondition; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QWaitCondition (); } class QWriteLocker; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QWriteLocker (); } class QXmlStreamAttribute; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamAttribute (); } class QXmlStreamAttributes; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamAttributes (); } class QXmlStreamEntityDeclaration; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamEntityDeclaration (); } class QXmlStreamEntityResolver; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamEntityResolver (); } class QXmlStreamNamespaceDeclaration; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamNamespaceDeclaration (); } class QXmlStreamNotationDeclaration; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamNotationDeclaration (); } class QXmlStreamReader; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamReader (); } class QXmlStreamStringRef; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamStringRef (); } class QXmlStreamWriter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTCORE_PUBLIC gsi::Class &qtdecl_QXmlStreamWriter (); } diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionFactory.cc b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionFactory.cc index bdcf2871a..395bcd903 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionFactory.cc +++ b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionFactory.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtDesignerCommon.h" -#include "gsiDeclQtDesignerTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionManager.cc b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionManager.cc index f9357bc60..602fdb0db 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionManager.cc +++ b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionManager.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtDesignerCommon.h" -#include "gsiDeclQtDesignerTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractFormBuilder.cc b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractFormBuilder.cc index 0000a4f26..fea90cab5 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractFormBuilder.cc +++ b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractFormBuilder.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtDesignerCommon.h" -#include "gsiDeclQtDesignerTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQFormBuilder.cc b/src/gsiqt/qt5/QtDesigner/gsiDeclQFormBuilder.cc index 50dd910f1..ebb7caafd 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQFormBuilder.cc +++ b/src/gsiqt/qt5/QtDesigner/gsiDeclQFormBuilder.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtDesignerCommon.h" -#include "gsiDeclQtDesignerTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQtDesignerTypeTraits.h b/src/gsiqt/qt5/QtDesigner/gsiDeclQtDesignerTypeTraits.h deleted file mode 100644 index e2b2a05c1..000000000 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQtDesignerTypeTraits.h +++ /dev/null @@ -1,412 +0,0 @@ - -/* - - 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 generated/gsiDeclQtDesignerTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtDesignerTypeTraits -#define _HDR_gsiDeclQtDesignerTypeTraits - -#include "gsiTypes.h" - - -class QAbstractExtensionFactory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractExtensionFactory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAbstractExtensionManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractExtensionManager_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAbstractFormBuilder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBrush; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QColor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QConicalGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFormBuilder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImage; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLinearGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPainterPath; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPathStroker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPalette; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygonF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadialGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizePolicy; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTransform; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtDesigner/gsiQtExternals.h b/src/gsiqt/qt5/QtDesigner/gsiQtExternals.h index decf8c196..9d2bb899a 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtDesigner/gsiQtExternals.h @@ -35,36 +35,18 @@ class QAbstractExtensionFactory; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTDESIGNER_PUBLIC gsi::Class &qtdecl_QAbstractExtensionFactory (); } class QAbstractExtensionManager; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTDESIGNER_PUBLIC gsi::Class &qtdecl_QAbstractExtensionManager (); } class QAbstractFormBuilder; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTDESIGNER_PUBLIC gsi::Class &qtdecl_QAbstractFormBuilder (); } class QFormBuilder; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTDESIGNER_PUBLIC gsi::Class &qtdecl_QFormBuilder (); } diff --git a/src/gsiqt/qt5/QtGui/QtGui.pri b/src/gsiqt/qt5/QtGui/QtGui.pri index 095cd328d..e8b50455e 100644 --- a/src/gsiqt/qt5/QtGui/QtGui.pri +++ b/src/gsiqt/qt5/QtGui/QtGui.pri @@ -112,6 +112,7 @@ SOURCES += \ $$PWD/gsiDeclQPen.cc \ $$PWD/gsiDeclQPicture.cc \ $$PWD/gsiDeclQPictureFormatPlugin.cc \ + $$PWD/gsiDeclQPixelFormat.cc \ $$PWD/gsiDeclQPixmap.cc \ $$PWD/gsiDeclQPixmapCache.cc \ $$PWD/gsiDeclQPlatformSurfaceEvent.cc \ diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc index 793296480..36a0ed074 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc @@ -48,7 +48,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout_PaintContext.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout_PaintContext.cc index 4f0607a0d..03127c849 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout_PaintContext.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout_PaintContext.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout_Selection.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout_Selection.cc index e39cb17d0..d20856872 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout_Selection.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout_Selection.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractUndoItem.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractUndoItem.cc index 5b3d1ce3f..9fb31e010 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractUndoItem.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractUndoItem.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible.cc index f50c902f0..7a088a4a6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc index 1d9fa339c..b26a839f6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc index d238f4b71..eed71d2ce 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEvent.cc index 16b1be025..779a42263 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleImageInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleImageInterface.cc index fdaad2163..8ae537f00 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleImageInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleImageInterface.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleInterface.cc index 339cd81e4..394943dc8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleInterface.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc index f736f4c40..ae8376675 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleStateChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleStateChangeEvent.cc index 769fd8532..2bc300bac 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleStateChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleStateChangeEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableCellInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableCellInterface.cc index a32a1e28e..e34e9104e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableCellInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableCellInterface.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc index 60df67ac5..003be0198 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableModelChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableModelChangeEvent.cc index 5c643c7ce..faa9b4dc7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableModelChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableModelChangeEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextCursorEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextCursorEvent.cc index 47b9bc686..94ea75e43 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextCursorEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextCursorEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInsertEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInsertEvent.cc index 01a892bb8..aa8a70059 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInsertEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInsertEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc index 4c6afd6d8..ba1e09f9a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextRemoveEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextRemoveEvent.cc index a09ca664f..dfc4d4f49 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextRemoveEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextRemoveEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextSelectionEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextSelectionEvent.cc index 0355aa8e4..b87839dcd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextSelectionEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextSelectionEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextUpdateEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextUpdateEvent.cc index 00de22146..903b76b5e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextUpdateEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextUpdateEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueChangeEvent.cc index dd6bbd002..7420e6215 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueChangeEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc index 7dd407052..089043de1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc index 341690a56..5dc5b1e0e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_State.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_State.cc index 273e8a93b..3bbf423a7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_State.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_State.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQActionEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQActionEvent.cc index 422fe0541..24c386867 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQActionEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQActionEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQApplicationStateChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQApplicationStateChangeEvent.cc index 612f5d38b..880210aa9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQApplicationStateChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQApplicationStateChangeEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQBackingStore.cc b/src/gsiqt/qt5/QtGui/gsiDeclQBackingStore.cc index 377246aa6..e8f428ba9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQBackingStore.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQBackingStore.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc b/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc index 9ea73542c..fe1362b42 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc @@ -45,7 +45,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQBrush.cc b/src/gsiqt/qt5/QtGui/gsiDeclQBrush.cc index fb23dda48..77afb102a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQBrush.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQBrush.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQClipboard.cc b/src/gsiqt/qt5/QtGui/gsiDeclQClipboard.cc index 64c1fe4c8..35e0c8403 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQClipboard.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQClipboard.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQCloseEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQCloseEvent.cc index c077ce92d..24e13d55c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQCloseEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQCloseEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQColor.cc b/src/gsiqt/qt5/QtGui/gsiDeclQColor.cc index 4520129de..9b4e8a608 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQColor.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQColor.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQConicalGradient.cc b/src/gsiqt/qt5/QtGui/gsiDeclQConicalGradient.cc index 97cd95dc4..74f1df076 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQConicalGradient.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQConicalGradient.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQContextMenuEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQContextMenuEvent.cc index cb25f8d6c..5159e7861 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQContextMenuEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQContextMenuEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQCursor.cc b/src/gsiqt/qt5/QtGui/gsiDeclQCursor.cc index d16a5e9d0..14c30f16d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQCursor.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQCursor.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDesktopServices.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDesktopServices.cc index e3593cc1a..5ed184fdd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDesktopServices.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDesktopServices.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc index 53d81dd56..7db6737a4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc index 4bd53b910..a89957ea3 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDragEnterEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDragEnterEvent.cc index 8336c8576..f8dd7c4f3 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDragEnterEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDragEnterEvent.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDragLeaveEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDragLeaveEvent.cc index e1882a14e..2cfe23dbe 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDragLeaveEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDragLeaveEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc index 67ea5aca3..ac5002312 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDropEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDropEvent.cc index ce396e98a..4700fbf4d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDropEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDropEvent.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQEnterEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQEnterEvent.cc index 87ba49243..6bc8951c6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQEnterEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQEnterEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQExposeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQExposeEvent.cc index 80360079c..2be8d9d7e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQExposeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQExposeEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFileOpenEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFileOpenEvent.cc index b01942cd6..aaf03d8c6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFileOpenEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFileOpenEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFocusEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFocusEvent.cc index 97cd0af88..c553cc60d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFocusEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFocusEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFont.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFont.cc index 00f801f09..d4c54fb19 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFont.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFont.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFontDatabase.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFontDatabase.cc index 91597fe78..930285e17 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFontDatabase.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFontDatabase.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFontInfo.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFontInfo.cc index 4fd79e5f4..8404c2980 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFontInfo.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFontInfo.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFontMetrics.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFontMetrics.cc index 87a996228..80c81976b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFontMetrics.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFontMetrics.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFontMetricsF.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFontMetricsF.cc index f2d66d6b4..d68231959 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFontMetricsF.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFontMetricsF.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc index 95d3efa72..e52a9097d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPluginFactory.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPluginFactory.cc index 49669fe50..a95ef247b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPluginFactory.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPluginFactory.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGlyphRun.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGlyphRun.cc index 2b16db325..d2bdb8528 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGlyphRun.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGlyphRun.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGradient.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGradient.cc index f6fe29e0b..9a3e9c5a2 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGradient.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGradient.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc index c27f59892..07e30bbee 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc @@ -33,9 +33,10 @@ #include #include #include +#include +#include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQHelpEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQHelpEvent.cc index fd01ed651..dab579908 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQHelpEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQHelpEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQHideEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQHideEvent.cc index bb2dca631..6a0a9d724 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQHideEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQHideEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQHoverEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQHoverEvent.cc index 1e6309dcc..c02a661d5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQHoverEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQHoverEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIcon.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIcon.cc index 5b6080085..4a39137c5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIcon.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIcon.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIconDragEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIconDragEvent.cc index 9b827646e..d8841eac8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIconDragEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIconDragEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc index 69876940a..a8e27ae33 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc index 55365c7be..8da3566d7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine_AvailableSizesArgument.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine_AvailableSizesArgument.cc index d6d635232..df94bef3c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine_AvailableSizesArgument.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine_AvailableSizesArgument.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc index a6e1db3df..407918c0c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc index 2649d8fb1..6005eea0c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc index b8903acb5..b268d8821 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageReader.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageReader.cc index ec43e5701..d92ee1861 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageReader.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageReader.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageWriter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageWriter.cc index 5f7e03d03..9497de9f4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageWriter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageWriter.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputEvent.cc index c128c29ef..514419236 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethod.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethod.cc index f3c0220e0..c42c31665 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethod.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethod.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent.cc index df3085861..17b717fc9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent_Attribute.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent_Attribute.cc index cd38a1501..439146a03 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent_Attribute.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent_Attribute.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodQueryEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodQueryEvent.cc index 1ee46e7e3..c347a00c4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodQueryEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodQueryEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc index ec0759408..8d0e21ec2 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc index a18931919..ba34097dd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQKeySequence.cc b/src/gsiqt/qt5/QtGui/gsiDeclQKeySequence.cc index b01270cbc..bc7828669 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQKeySequence.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQKeySequence.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQLinearGradient.cc b/src/gsiqt/qt5/QtGui/gsiDeclQLinearGradient.cc index b6a0bb00c..1dd8458cc 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQLinearGradient.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQLinearGradient.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMatrix.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMatrix.cc index 479ca86cd..2e16789e7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMatrix.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMatrix.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMatrix4x4.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMatrix4x4.cc index 271a35c27..105aa3bad 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMatrix4x4.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMatrix4x4.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMouseEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMouseEvent.cc index 5e2bbff64..442c77651 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMouseEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMouseEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMoveEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMoveEvent.cc index 870a00b84..4e8bb23a8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMoveEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMoveEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc index 3dcc5b8b1..3e92e551d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQNativeGestureEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQNativeGestureEvent.cc index 479674e5f..fafb7633b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQNativeGestureEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQNativeGestureEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc index 5b7e49503..d12f95d76 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPageLayout.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPageLayout.cc index 6321d46c4..834cc0614 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPageLayout.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPageLayout.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPageSize.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPageSize.cc index a936d6b07..10cb6ebfe 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPageSize.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPageSize.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc index 5f63771a6..a3f68d5ab 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice_Margins.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice_Margins.cc index ac4d4ba02..0631bef2a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice_Margins.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice_Margins.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc index 23f2d7a3b..8902a865c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDevice.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc index 0af5c2e57..7ceb8e117 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc @@ -61,7 +61,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc index 195ec46e4..f709f477a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngineState.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngineState.cc index c3fb7f01a..c4d2e6465 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngineState.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngineState.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEvent.cc index b967d3c16..0c0d37db3 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainter.cc index b281d4539..7b4fa0cd4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainter.cc @@ -57,7 +57,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath.cc index b2c47bf0e..f45088b95 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPathStroker.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPathStroker.cc index 8cd334343..e1040c5a7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPathStroker.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPathStroker.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath_Element.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath_Element.cc index ffb76c665..1812f73dd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath_Element.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath_Element.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainter_PixmapFragment.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainter_PixmapFragment.cc index ad512096b..55a01be94 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainter_PixmapFragment.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainter_PixmapFragment.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPalette.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPalette.cc index 0001b842a..33ad546e0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPalette.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPalette.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc index 689a51b88..9d915767c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc @@ -44,7 +44,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPen.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPen.cc index 8c3322db3..4a9e642c0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPen.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPen.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc index 5ff3258ce..15d9d9ce3 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc index a7271146d..a552bda85 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPixelFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPixelFormat.cc index 00497c3f2..7adfed8f7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPixelFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPixelFormat.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc index df67466a2..e04a5c5f5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc @@ -45,7 +45,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPixmapCache.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPixmapCache.cc index 26da57fc9..f4a6e1180 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPixmapCache.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPixmapCache.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPlatformSurfaceEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPlatformSurfaceEvent.cc index fcedddbbb..0a5ed95e5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPlatformSurfaceEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPlatformSurfaceEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPolygon.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPolygon.cc index ca80a2c66..22960fd47 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPolygon.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPolygon.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- @@ -92,52 +91,52 @@ static void f_QPolygon_clear (QPolygon *m) { - return m->clear(); + m->clear(); } static void f_QPolygon_remove (QPolygon *m, int i) { - return m->remove (i); + m->remove (i); } static void f_QPolygon_insert (QPolygon *m, int i, const QPoint &p) { - return m->insert (i, p); + m->insert (i, p); } static void f_QPolygon_replace (QPolygon *m, int i, const QPoint &p) { - return m->replace (i, p); + m->replace (i, p); } static void f_QPolygon_pop_front (QPolygon *m) { - return m->pop_front (); + m->pop_front (); } static void f_QPolygon_pop_back (QPolygon *m) { - return m->pop_back (); + m->pop_back (); } static void f_QPolygon_push_front (QPolygon *m, const QPoint &p) { - return m->push_front (p); + m->push_front (p); } static void f_QPolygon_push_back (QPolygon *m, const QPoint &p) { - return m->push_back (p); + m->push_back (p); } static void f_QPolygon_reserve (QPolygon *m, int n) { - return m->reserve (n); + m->reserve (n); } static void f_QPolygon_resize (QPolygon *m, int n) { - return m->resize (n); + m->resize (n); } static void f_QPolygon_fill (QPolygon *m, const QPoint &p, int n) diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPolygonF.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPolygonF.cc index 1a7901ee5..347f8a35c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPolygonF.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPolygonF.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- @@ -93,52 +92,52 @@ static void f_QPolygonF_clear (QPolygonF *m) { - return m->clear(); + m->clear(); } static void f_QPolygonF_remove (QPolygonF *m, int i) { - return m->remove (i); + m->remove (i); } static void f_QPolygonF_insert (QPolygonF *m, int i, const QPointF &p) { - return m->insert (i, p); + m->insert (i, p); } static void f_QPolygonF_replace (QPolygonF *m, int i, const QPointF &p) { - return m->replace (i, p); + m->replace (i, p); } static void f_QPolygonF_pop_front (QPolygonF *m) { - return m->pop_front (); + m->pop_front (); } static void f_QPolygonF_pop_back (QPolygonF *m) { - return m->pop_back (); + m->pop_back (); } static void f_QPolygonF_push_front (QPolygonF *m, const QPointF &p) { - return m->push_front (p); + m->push_front (p); } static void f_QPolygonF_push_back (QPolygonF *m, const QPointF &p) { - return m->push_back (p); + m->push_back (p); } static void f_QPolygonF_reserve (QPolygonF *m, int n) { - return m->reserve (n); + m->reserve (n); } static void f_QPolygonF_resize (QPolygonF *m, int n) { - return m->resize (n); + m->resize (n); } static void f_QPolygonF_fill (QPolygonF *m, const QPointF &p, int n) diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQQuaternion.cc b/src/gsiqt/qt5/QtGui/gsiDeclQQuaternion.cc index 29c5dc1d2..0bac431d0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQQuaternion.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQQuaternion.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRadialGradient.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRadialGradient.cc index 8949a6d99..426810041 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRadialGradient.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRadialGradient.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc index 0a4bbcd3f..9e8e8c337 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc @@ -61,7 +61,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRawFont.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRawFont.cc index 7dc891a30..fc5268ec9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRawFont.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRawFont.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc index 6b2b60e5a..153355940 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegion.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegion.cc index 0e6cca971..11eadee30 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegion.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegion.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc index ed9bf15c8..3842eea73 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQResizeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQResizeEvent.cc index fbec2fe38..a0ca4e0e0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQResizeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQResizeEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc index 12b6fc747..b1b5c5179 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScreenOrientationChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScreenOrientationChangeEvent.cc index 0885b6ca4..9ad3bfd6d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScreenOrientationChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScreenOrientationChangeEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScrollEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScrollEvent.cc index c45d6cb86..79afc0fa8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScrollEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScrollEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScrollPrepareEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScrollPrepareEvent.cc index 6ca671551..e587f4755 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScrollPrepareEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScrollPrepareEvent.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQSessionManager.cc b/src/gsiqt/qt5/QtGui/gsiDeclQSessionManager.cc index 9705528c2..2fb3624b1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQSessionManager.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQSessionManager.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQShortcutEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQShortcutEvent.cc index a25ac7325..0f017ebfa 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQShortcutEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQShortcutEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQShowEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQShowEvent.cc index 6ac22b09f..f41f921ff 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQShowEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQShowEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc index f0deb1956..4d519801d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- @@ -1665,11 +1664,6 @@ public: QStandardItem::emitDataChanged(); } - // [expose] QStandardItem &QStandardItem::operator=(const QStandardItem &other) - QStandardItem & fp_QStandardItem_operator_eq__2610 (const QStandardItem &other) { - return QStandardItem::operator=(other); - } - // [adaptor impl] QStandardItem *QStandardItem::clone() QStandardItem * cbs_clone_c0_0() const { @@ -1940,24 +1934,6 @@ static void _set_callback_cbs_operator_lt__c2610_0 (void *cls, const gsi::Callba } -// exposed QStandardItem &QStandardItem::operator=(const QStandardItem &other) - -static void _init_fp_operator_eq__2610 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_operator_eq__2610 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QStandardItem &arg1 = gsi::arg_reader() (args, heap); - ret.write ((QStandardItem &)((QStandardItem_Adaptor *)cls)->fp_QStandardItem_operator_eq__2610 (arg1)); -} - - // void QStandardItem::read(QDataStream &in) static void _init_cbs_read_1697_0 (qt_gsi::GenericMethod *decl) @@ -2070,7 +2046,6 @@ static gsi::Methods methods_QStandardItem_Adaptor () { methods += new qt_gsi::GenericMethod ("*emitDataChanged", "@brief Method void QStandardItem::emitDataChanged()\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_emitDataChanged_0, &_call_fp_emitDataChanged_0); methods += new qt_gsi::GenericMethod ("<", "@brief Virtual method bool QStandardItem::operator<(const QStandardItem &other)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_operator_lt__c2610_0, &_call_cbs_operator_lt__c2610_0); methods += new qt_gsi::GenericMethod ("<", "@hide", true, &_init_cbs_operator_lt__c2610_0, &_call_cbs_operator_lt__c2610_0, &_set_callback_cbs_operator_lt__c2610_0); - methods += new qt_gsi::GenericMethod ("*assign", "@brief Method QStandardItem &QStandardItem::operator=(const QStandardItem &other)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_operator_eq__2610, &_call_fp_operator_eq__2610); methods += new qt_gsi::GenericMethod ("read", "@brief Virtual method void QStandardItem::read(QDataStream &in)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_read_1697_0, &_call_cbs_read_1697_0); methods += new qt_gsi::GenericMethod ("read", "@hide", false, &_init_cbs_read_1697_0, &_call_cbs_read_1697_0, &_set_callback_cbs_read_1697_0); methods += new qt_gsi::GenericMethod ("setData", "@brief Virtual method void QStandardItem::setData(const QVariant &value, int role)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setData_2778_1, &_call_cbs_setData_2778_1); diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc index 97e20aa44..6359dd5e0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStaticText.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStaticText.cc index 9fd5ebc36..5b44ff20d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStaticText.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStaticText.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStatusTipEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStatusTipEvent.cc index 78b26f3a1..8f58018d8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStatusTipEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStatusTipEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc index cd847d714..18ff08d80 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQSurface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQSurface.cc index 4e961f1ff..56e5c72be 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQSurface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQSurface.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQSurfaceFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQSurfaceFormat.cc index b207de231..b249888e6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQSurfaceFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQSurfaceFormat.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc index 1db0bb0aa..07a79ea4e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTabletEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTabletEvent.cc index a2b3dc355..62d95d3f9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTabletEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTabletEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock.cc index 7ef41f1ed..d462edacf 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc index 971c20610..98c481034 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc index 3a960a9cb..29edec231 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockUserData.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockUserData.cc index 689d291d5..0feda7e98 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockUserData.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockUserData.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock_Iterator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock_Iterator.cc index 9aee92298..a656c8479 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock_Iterator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock_Iterator.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc index 714783296..370af9941 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextCursor.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextCursor.cc index 4ec2e13e9..48f35267f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextCursor.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextCursor.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc index 4c7a4ac29..ea3e53b14 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc @@ -51,7 +51,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentFragment.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentFragment.cc index 34c6f2e36..934d7daee 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentFragment.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentFragment.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentWriter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentWriter.cc index b4393eb66..accfe241b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentWriter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentWriter.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFormat.cc index 75d144727..4744d9ea5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFormat.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFragment.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFragment.cc index 2258468fe..ddc7d50b4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFragment.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFragment.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc index 083c5f12e..f3b81eeae 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc index dc10e50b1..a59b65157 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame_Iterator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame_Iterator.cc index 05cf05632..96a54219f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame_Iterator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame_Iterator.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc index ff5e94d38..c522ea93d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextInlineObject.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextInlineObject.cc index 4dc48560c..3b9a9373d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextInlineObject.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextInlineObject.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextItem.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextItem.cc index 240753d49..968242a09 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextItem.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextItem.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout.cc index 9b5f122a0..c3e4f81e8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout_FormatRange.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout_FormatRange.cc index 26a5f4081..2d70f7533 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout_FormatRange.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout_FormatRange.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextLength.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextLength.cc index 60b0330e1..7f80be6b6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextLength.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextLength.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextLine.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextLine.cc index 2a3f13d06..7c0fbd738 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextLine.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextLine.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc index bfd1ecc06..1b2ba260f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc index 6e8c7245c..e6313345a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc index 0b225c49d..bb7fa3dcb 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc index e59b7e95f..8ca27e537 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextOption.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextOption.cc index e24283947..cd3b4f666 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextOption.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextOption.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextOption_Tab.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextOption_Tab.cc index 08c250dcc..e9f55f7ff 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextOption_Tab.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextOption_Tab.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc index 4baa910b4..8c104bcb3 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCell.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCell.cc index 2c10d874b..b736aabd9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCell.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCell.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc index e149cf7a2..a49e3b51a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc index 16973f1ea..90a3da4d7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQToolBarChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQToolBarChangeEvent.cc index e8ba1593a..20bd0244f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQToolBarChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQToolBarChangeEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTouchDevice.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTouchDevice.cc index 5a8f5d4f3..0f08c51a1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTouchDevice.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTouchDevice.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent.cc index fda9c39b0..2a8b2124b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent_TouchPoint.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent_TouchPoint.cc index 601066c92..7654d77a6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent_TouchPoint.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent_TouchPoint.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTransform.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTransform.cc index 106f35360..7137b4c3b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTransform.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTransform.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc index 803b1fab8..240b3b475 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQVector2D.cc b/src/gsiqt/qt5/QtGui/gsiDeclQVector2D.cc index 6255a3cd7..52aacc998 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQVector2D.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQVector2D.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQVector3D.cc b/src/gsiqt/qt5/QtGui/gsiDeclQVector3D.cc index 84934ce4a..58bd24610 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQVector3D.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQVector3D.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQVector4D.cc b/src/gsiqt/qt5/QtGui/gsiDeclQVector4D.cc index 33d9bc30d..2607cad67 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQVector4D.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQVector4D.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWhatsThisClickedEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWhatsThisClickedEvent.cc index 6cfea95f8..2992bde20 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWhatsThisClickedEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWhatsThisClickedEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWheelEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWheelEvent.cc index a500d9513..395e8a953 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWheelEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWheelEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc index 79c61223f..37ee80f3e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc @@ -29,9 +29,9 @@ #include #include +#include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWindowStateChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWindowStateChangeEvent.cc index 976a31c00..b89443a30 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWindowStateChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWindowStateChangeEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtGuiCommon.h" -#include "gsiDeclQtGuiTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQtGuiTypeTraits.h b/src/gsiqt/qt5/QtGui/gsiDeclQtGuiTypeTraits.h deleted file mode 100644 index 796d8fa9a..000000000 --- a/src/gsiqt/qt5/QtGui/gsiDeclQtGuiTypeTraits.h +++ /dev/null @@ -1,3461 +0,0 @@ - -/* - - 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 generated/gsiDeclQtGuiTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtGuiTypeTraits -#define _HDR_gsiDeclQtGuiTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTextDocumentLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTextDocumentLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractUndoItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractUndoItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessible; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessible_ActivationObserver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleActionInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleActionInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEditableTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleEditableTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableModelChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableModelChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTextRemoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextRemoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QActionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QApplicationStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QBackingStore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBrush; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QClipboard; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QCloseEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCloseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QColor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QConicalGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QContextMenuEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QContextMenuEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDesktopServices; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDoubleValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDoubleValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragLeaveEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragLeaveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QExposeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QExposeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileOpenEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileOpenEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFocusEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFocusEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontDatabase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetrics; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetricsF; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QGenericPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGenericPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGenericPluginFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGlyphRun; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGuiApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGuiApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHideEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHideEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHoverEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHoverEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIcon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEnginePlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEnginePlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImage; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImageIOHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageIOPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethod; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QInputMethodEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIntValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIntValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeySequence; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLinearGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix4x4; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMouseEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMouseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMovie; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMovie_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNativeGestureEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPageLayout; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPageSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPagedPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPagedPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintDeviceWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDeviceWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintEngineState; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPainter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPath; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPathStroker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPalette; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPdfWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPdfWriter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPen; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPictureFormatPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPictureFormatPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPixmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmapCache; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPlatformSurfaceEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlatformSurfaceEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygonF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QQuaternion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadialGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRasterWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRasterWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRawFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExpValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegExpValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRegularExpressionValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QResizeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResizeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScreen; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreen_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSessionManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QShortcutEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcutEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShowEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QShowEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStaticText; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStatusTipEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStatusTipEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHints; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyleHints_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSurfaceFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSyntaxHighlighter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSyntaxHighlighter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTabletEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTabletEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBlock; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextBlockGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextBlockUserData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockUserData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCharFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextDocument; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocument_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocumentFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDocumentWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrameFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextImageFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextInlineObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLength; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextList; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextList_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextListFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextOption; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextTable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTableCell; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableCellFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBarChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBarChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchDevice; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTouchEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTransform; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVector2D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector3D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector4D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWhatsThisClickedEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWhatsThisClickedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindowStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindowStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtGui/gsiQtExternals.h b/src/gsiqt/qt5/QtGui/gsiQtExternals.h index 9579dd5d0..62edb8578 100644 --- a/src/gsiqt/qt5/QtGui/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtGui/gsiQtExternals.h @@ -35,1315 +35,666 @@ class QAbstractTextDocumentLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAbstractTextDocumentLayout (); } class QAbstractUndoItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAbstractUndoItem (); } class QAccessible; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessible (); } class QAccessibleActionInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleActionInterface (); } class QAccessibleEditableTextInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleEditableTextInterface (); } class QAccessibleEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleEvent (); } class QAccessibleImageInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleImageInterface (); } class QAccessibleInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleInterface (); } class QAccessibleObject; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleObject (); } class QAccessibleStateChangeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleStateChangeEvent (); } class QAccessibleTableCellInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTableCellInterface (); } class QAccessibleTableInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTableInterface (); } class QAccessibleTableModelChangeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTableModelChangeEvent (); } class QAccessibleTextCursorEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTextCursorEvent (); } class QAccessibleTextInsertEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTextInsertEvent (); } class QAccessibleTextInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTextInterface (); } class QAccessibleTextRemoveEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTextRemoveEvent (); } class QAccessibleTextSelectionEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTextSelectionEvent (); } class QAccessibleTextUpdateEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleTextUpdateEvent (); } class QAccessibleValueChangeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleValueChangeEvent (); } class QAccessibleValueInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QAccessibleValueInterface (); } class QActionEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QActionEvent (); } class QApplicationStateChangeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QApplicationStateChangeEvent (); } class QBackingStore; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QBackingStore (); } class QBitmap; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QBitmap (); } class QBrush; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QBrush (); } class QClipboard; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QClipboard (); } class QCloseEvent; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QCloseEvent (); } class QColor; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QColor (); } class QConicalGradient; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QConicalGradient (); } class QContextMenuEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QContextMenuEvent (); } class QCursor; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QCursor (); } class QDesktopServices; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QDesktopServices (); } class QDoubleValidator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QDoubleValidator (); } class QDrag; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QDrag (); } class QDragEnterEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QDragEnterEvent (); } class QDragLeaveEvent; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QDragLeaveEvent (); } class QDragMoveEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QDragMoveEvent (); } class QDropEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QDropEvent (); } class QEnterEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QEnterEvent (); } class QExposeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QExposeEvent (); } class QFileOpenEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QFileOpenEvent (); } class QFocusEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QFocusEvent (); } class QFont; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QFont (); } class QFontDatabase; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QFontDatabase (); } class QFontInfo; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QFontInfo (); } class QFontMetrics; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QFontMetrics (); } class QFontMetricsF; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QFontMetricsF (); } class QGenericPlugin; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QGenericPlugin (); } class QGenericPluginFactory; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QGenericPluginFactory (); } class QGlyphRun; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QGlyphRun (); } class QGradient; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QGradient (); } class QGuiApplication; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QGuiApplication (); } class QHelpEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QHelpEvent (); } class QHideEvent; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QHideEvent (); } class QHoverEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QHoverEvent (); } class QIcon; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QIcon (); } class QIconDragEvent; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QIconDragEvent (); } class QIconEngine; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QIconEngine (); } class QIconEnginePlugin; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QIconEnginePlugin (); } class QImage; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QImage (); } class QImageIOHandler; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QImageIOHandler (); } class QImageIOPlugin; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QImageIOPlugin (); } class QImageReader; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QImageReader (); } class QImageWriter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QImageWriter (); } class QInputEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QInputEvent (); } class QInputMethod; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QInputMethod (); } class QInputMethodEvent; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QInputMethodEvent (); } class QInputMethodQueryEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QInputMethodQueryEvent (); } class QIntValidator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QIntValidator (); } class QKeyEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QKeyEvent (); } class QKeySequence; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QKeySequence (); } class QLinearGradient; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QLinearGradient (); } class QMatrix; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QMatrix (); } class QMatrix4x4; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QMatrix4x4 (); } class QMouseEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QMouseEvent (); } class QMoveEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QMoveEvent (); } class QMovie; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QMovie (); } class QNativeGestureEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QNativeGestureEvent (); } class QOffscreenSurface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QOffscreenSurface (); } class QPageLayout; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPageLayout (); } class QPageSize; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPageSize (); } class QPagedPaintDevice; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPagedPaintDevice (); } class QPaintDevice; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPaintDevice (); } class QPaintDeviceWindow; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPaintDeviceWindow (); } class QPaintEngine; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPaintEngine (); } class QPaintEngineState; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPaintEngineState (); } class QPaintEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPaintEvent (); } class QPainter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPainter (); } class QPainterPath; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPainterPath (); } class QPainterPathStroker; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPainterPathStroker (); } class QPalette; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPalette (); } class QPdfWriter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPdfWriter (); } class QPen; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPen (); } class QPicture; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPicture (); } class QPictureFormatPlugin; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPictureFormatPlugin (); } -class QPixmap; +class QPixelFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } +namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPixelFormat (); } + +class QPixmap; namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPixmap (); } class QPixmapCache; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPixmapCache (); } class QPlatformSurfaceEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPlatformSurfaceEvent (); } class QPolygon; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPolygon (); } class QPolygonF; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QPolygonF (); } class QQuaternion; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QQuaternion (); } class QRadialGradient; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QRadialGradient (); } class QRasterWindow; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QRasterWindow (); } class QRawFont; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QRawFont (); } class QRegExpValidator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QRegExpValidator (); } class QRegion; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QRegion (); } class QRegularExpressionValidator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QRegularExpressionValidator (); } class QResizeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QResizeEvent (); } class QScreen; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QScreen (); } class QScreenOrientationChangeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QScreenOrientationChangeEvent (); } class QScrollEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QScrollEvent (); } class QScrollPrepareEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QScrollPrepareEvent (); } class QSessionManager; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QSessionManager (); } class QShortcutEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QShortcutEvent (); } class QShowEvent; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QShowEvent (); } class QStandardItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QStandardItem (); } class QStandardItemModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QStandardItemModel (); } class QStaticText; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QStaticText (); } class QStatusTipEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QStatusTipEvent (); } class QStyleHints; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QStyleHints (); } class QSurface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QSurface (); } class QSurfaceFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QSurfaceFormat (); } class QSyntaxHighlighter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QSyntaxHighlighter (); } class QTabletEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTabletEvent (); } class QTextBlock; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextBlock (); } class QTextBlockFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextBlockFormat (); } class QTextBlockGroup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextBlockGroup (); } class QTextBlockUserData; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextBlockUserData (); } class QTextCharFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextCharFormat (); } class QTextCursor; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextCursor (); } class QTextDocument; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextDocument (); } class QTextDocumentFragment; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextDocumentFragment (); } class QTextDocumentWriter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextDocumentWriter (); } class QTextFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextFormat (); } class QTextFragment; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextFragment (); } class QTextFrame; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextFrame (); } class QTextFrameFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextFrameFormat (); } class QTextImageFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextImageFormat (); } class QTextInlineObject; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextInlineObject (); } class QTextItem; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextItem (); } class QTextLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextLayout (); } class QTextLength; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextLength (); } class QTextLine; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextLine (); } class QTextList; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextList (); } class QTextListFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextListFormat (); } class QTextObject; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextObject (); } class QTextObjectInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextObjectInterface (); } class QTextOption; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextOption (); } class QTextTable; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextTable (); } class QTextTableCell; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextTableCell (); } class QTextTableCellFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextTableCellFormat (); } class QTextTableFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTextTableFormat (); } class QToolBarChangeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QToolBarChangeEvent (); } class QTouchDevice; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTouchDevice (); } class QTouchEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTouchEvent (); } class QTransform; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QTransform (); } class QValidator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QValidator (); } class QVector2D; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QVector2D (); } class QVector3D; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QVector3D (); } class QVector4D; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QVector4D (); } class QWhatsThisClickedEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QWhatsThisClickedEvent (); } class QWheelEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QWheelEvent (); } class QWindow; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QWindow (); } class QWindowStateChangeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTGUI_PUBLIC gsi::Class &qtdecl_QWindowStateChangeEvent (); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc index 00797f852..9833dcad0 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc index e665a58d4..f12900e6b 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc index 5a3513a05..018b9c1f0 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractNetworkCache.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractNetworkCache.cc deleted file mode 100644 index eab2cd48e..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractNetworkCache.cc +++ /dev/null @@ -1,1030 +0,0 @@ - -/* - - 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 gsiDeclQAbstractNetworkCache.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QAbstractNetworkCache - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QAbstractNetworkCache::staticMetaObject); -} - - -// qint64 QAbstractNetworkCache::cacheSize() - - -static void _init_f_cacheSize_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_cacheSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QAbstractNetworkCache *)cls)->cacheSize ()); -} - - -// void QAbstractNetworkCache::clear() - - -static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache *)cls)->clear (); -} - - -// QIODevice *QAbstractNetworkCache::data(const QUrl &url) - - -static void _init_f_data_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_data_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((QIODevice *)((QAbstractNetworkCache *)cls)->data (arg1)); -} - - -// void QAbstractNetworkCache::insert(QIODevice *device) - - -static void _init_f_insert_1447 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_insert_1447 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache *)cls)->insert (arg1); -} - - -// QNetworkCacheMetaData QAbstractNetworkCache::metaData(const QUrl &url) - - -static void _init_f_metaData_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_metaData_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((QNetworkCacheMetaData)((QAbstractNetworkCache *)cls)->metaData (arg1)); -} - - -// QIODevice *QAbstractNetworkCache::prepare(const QNetworkCacheMetaData &metaData) - - -static void _init_f_prepare_3377 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("metaData"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_prepare_3377 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - ret.write ((QIODevice *)((QAbstractNetworkCache *)cls)->prepare (arg1)); -} - - -// bool QAbstractNetworkCache::remove(const QUrl &url) - - -static void _init_f_remove_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_remove_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((bool)((QAbstractNetworkCache *)cls)->remove (arg1)); -} - - -// void QAbstractNetworkCache::updateMetaData(const QNetworkCacheMetaData &metaData) - - -static void _init_f_updateMetaData_3377 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("metaData"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_updateMetaData_3377 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache *)cls)->updateMetaData (arg1); -} - - -// static QString QAbstractNetworkCache::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QAbstractNetworkCache::tr (arg1, arg2, arg3)); -} - - -// static QString QAbstractNetworkCache::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QAbstractNetworkCache::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QAbstractNetworkCache () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("cacheSize", "@brief Method qint64 QAbstractNetworkCache::cacheSize()\n", true, &_init_f_cacheSize_c0, &_call_f_cacheSize_c0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QAbstractNetworkCache::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Method QIODevice *QAbstractNetworkCache::data(const QUrl &url)\n", false, &_init_f_data_1701, &_call_f_data_1701); - methods += new qt_gsi::GenericMethod ("insert", "@brief Method void QAbstractNetworkCache::insert(QIODevice *device)\n", false, &_init_f_insert_1447, &_call_f_insert_1447); - methods += new qt_gsi::GenericMethod ("metaData", "@brief Method QNetworkCacheMetaData QAbstractNetworkCache::metaData(const QUrl &url)\n", false, &_init_f_metaData_1701, &_call_f_metaData_1701); - methods += new qt_gsi::GenericMethod ("prepare", "@brief Method QIODevice *QAbstractNetworkCache::prepare(const QNetworkCacheMetaData &metaData)\n", false, &_init_f_prepare_3377, &_call_f_prepare_3377); - methods += new qt_gsi::GenericMethod ("remove", "@brief Method bool QAbstractNetworkCache::remove(const QUrl &url)\n", false, &_init_f_remove_1701, &_call_f_remove_1701); - methods += new qt_gsi::GenericMethod ("updateMetaData", "@brief Method void QAbstractNetworkCache::updateMetaData(const QNetworkCacheMetaData &metaData)\n", false, &_init_f_updateMetaData_3377, &_call_f_updateMetaData_3377); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAbstractNetworkCache::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QAbstractNetworkCache::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 QAbstractNetworkCache::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QAbstractNetworkCache (qtdecl_QObject (), "QtMultimedia", "QAbstractNetworkCache_Native", - methods_QAbstractNetworkCache (), - "@hide\n@alias QAbstractNetworkCache"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAbstractNetworkCache () { return decl_QAbstractNetworkCache; } - -} - - -class QAbstractNetworkCache_Adaptor : public QAbstractNetworkCache, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QAbstractNetworkCache_Adaptor(); - - // [adaptor ctor] QAbstractNetworkCache::QAbstractNetworkCache() - QAbstractNetworkCache_Adaptor() : QAbstractNetworkCache() - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] bool QAbstractNetworkCache::isSignalConnected(const QMetaMethod &signal) - bool fp_QAbstractNetworkCache_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QAbstractNetworkCache::isSignalConnected(signal); - } - - // [expose] int QAbstractNetworkCache::receivers(const char *signal) - int fp_QAbstractNetworkCache_receivers_c1731 (const char *signal) const { - return QAbstractNetworkCache::receivers(signal); - } - - // [expose] QObject *QAbstractNetworkCache::sender() - QObject * fp_QAbstractNetworkCache_sender_c0 () const { - return QAbstractNetworkCache::sender(); - } - - // [expose] int QAbstractNetworkCache::senderSignalIndex() - int fp_QAbstractNetworkCache_senderSignalIndex_c0 () const { - return QAbstractNetworkCache::senderSignalIndex(); - } - - // [adaptor impl] qint64 QAbstractNetworkCache::cacheSize() - qint64 cbs_cacheSize_c0_0() const - { - throw qt_gsi::AbstractMethodCalledException("cacheSize"); - } - - virtual qint64 cacheSize() const - { - if (cb_cacheSize_c0_0.can_issue()) { - return cb_cacheSize_c0_0.issue(&QAbstractNetworkCache_Adaptor::cbs_cacheSize_c0_0); - } else { - throw qt_gsi::AbstractMethodCalledException("cacheSize"); - } - } - - // [adaptor impl] void QAbstractNetworkCache::clear() - void cbs_clear_0_0() - { - throw qt_gsi::AbstractMethodCalledException("clear"); - } - - virtual void clear() - { - if (cb_clear_0_0.can_issue()) { - cb_clear_0_0.issue(&QAbstractNetworkCache_Adaptor::cbs_clear_0_0); - } else { - throw qt_gsi::AbstractMethodCalledException("clear"); - } - } - - // [adaptor impl] QIODevice *QAbstractNetworkCache::data(const QUrl &url) - QIODevice * cbs_data_1701_0(const QUrl &url) - { - __SUPPRESS_UNUSED_WARNING (url); - throw qt_gsi::AbstractMethodCalledException("data"); - } - - virtual QIODevice * data(const QUrl &url) - { - if (cb_data_1701_0.can_issue()) { - return cb_data_1701_0.issue(&QAbstractNetworkCache_Adaptor::cbs_data_1701_0, url); - } else { - throw qt_gsi::AbstractMethodCalledException("data"); - } - } - - // [emitter impl] void QAbstractNetworkCache::destroyed(QObject *) - void emitter_QAbstractNetworkCache_destroyed_1302(QObject *arg1) - { - emit QAbstractNetworkCache::destroyed(arg1); - } - - // [adaptor impl] bool QAbstractNetworkCache::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QAbstractNetworkCache::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QAbstractNetworkCache_Adaptor::cbs_event_1217_0, arg1); - } else { - return QAbstractNetworkCache::event(arg1); - } - } - - // [adaptor impl] bool QAbstractNetworkCache::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QAbstractNetworkCache::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QAbstractNetworkCache_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QAbstractNetworkCache::eventFilter(arg1, arg2); - } - } - - // [adaptor impl] void QAbstractNetworkCache::insert(QIODevice *device) - void cbs_insert_1447_0(QIODevice *device) - { - __SUPPRESS_UNUSED_WARNING (device); - throw qt_gsi::AbstractMethodCalledException("insert"); - } - - virtual void insert(QIODevice *device) - { - if (cb_insert_1447_0.can_issue()) { - cb_insert_1447_0.issue(&QAbstractNetworkCache_Adaptor::cbs_insert_1447_0, device); - } else { - throw qt_gsi::AbstractMethodCalledException("insert"); - } - } - - // [adaptor impl] QNetworkCacheMetaData QAbstractNetworkCache::metaData(const QUrl &url) - QNetworkCacheMetaData cbs_metaData_1701_0(const QUrl &url) - { - __SUPPRESS_UNUSED_WARNING (url); - throw qt_gsi::AbstractMethodCalledException("metaData"); - } - - virtual QNetworkCacheMetaData metaData(const QUrl &url) - { - if (cb_metaData_1701_0.can_issue()) { - return cb_metaData_1701_0.issue(&QAbstractNetworkCache_Adaptor::cbs_metaData_1701_0, url); - } else { - throw qt_gsi::AbstractMethodCalledException("metaData"); - } - } - - // [adaptor impl] QIODevice *QAbstractNetworkCache::prepare(const QNetworkCacheMetaData &metaData) - QIODevice * cbs_prepare_3377_0(const QNetworkCacheMetaData &metaData) - { - __SUPPRESS_UNUSED_WARNING (metaData); - throw qt_gsi::AbstractMethodCalledException("prepare"); - } - - virtual QIODevice * prepare(const QNetworkCacheMetaData &metaData) - { - if (cb_prepare_3377_0.can_issue()) { - return cb_prepare_3377_0.issue(&QAbstractNetworkCache_Adaptor::cbs_prepare_3377_0, metaData); - } else { - throw qt_gsi::AbstractMethodCalledException("prepare"); - } - } - - // [adaptor impl] bool QAbstractNetworkCache::remove(const QUrl &url) - bool cbs_remove_1701_0(const QUrl &url) - { - __SUPPRESS_UNUSED_WARNING (url); - throw qt_gsi::AbstractMethodCalledException("remove"); - } - - virtual bool remove(const QUrl &url) - { - if (cb_remove_1701_0.can_issue()) { - return cb_remove_1701_0.issue(&QAbstractNetworkCache_Adaptor::cbs_remove_1701_0, url); - } else { - throw qt_gsi::AbstractMethodCalledException("remove"); - } - } - - // [adaptor impl] void QAbstractNetworkCache::updateMetaData(const QNetworkCacheMetaData &metaData) - void cbs_updateMetaData_3377_0(const QNetworkCacheMetaData &metaData) - { - __SUPPRESS_UNUSED_WARNING (metaData); - throw qt_gsi::AbstractMethodCalledException("updateMetaData"); - } - - virtual void updateMetaData(const QNetworkCacheMetaData &metaData) - { - if (cb_updateMetaData_3377_0.can_issue()) { - cb_updateMetaData_3377_0.issue(&QAbstractNetworkCache_Adaptor::cbs_updateMetaData_3377_0, metaData); - } else { - throw qt_gsi::AbstractMethodCalledException("updateMetaData"); - } - } - - // [adaptor impl] void QAbstractNetworkCache::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QAbstractNetworkCache::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QAbstractNetworkCache_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QAbstractNetworkCache::childEvent(arg1); - } - } - - // [adaptor impl] void QAbstractNetworkCache::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QAbstractNetworkCache::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QAbstractNetworkCache_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QAbstractNetworkCache::customEvent(arg1); - } - } - - // [adaptor impl] void QAbstractNetworkCache::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QAbstractNetworkCache::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QAbstractNetworkCache_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QAbstractNetworkCache::disconnectNotify(signal); - } - } - - // [adaptor impl] void QAbstractNetworkCache::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QAbstractNetworkCache::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QAbstractNetworkCache_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QAbstractNetworkCache::timerEvent(arg1); - } - } - - gsi::Callback cb_cacheSize_c0_0; - gsi::Callback cb_clear_0_0; - gsi::Callback cb_data_1701_0; - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_insert_1447_0; - gsi::Callback cb_metaData_1701_0; - gsi::Callback cb_prepare_3377_0; - gsi::Callback cb_remove_1701_0; - gsi::Callback cb_updateMetaData_3377_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QAbstractNetworkCache_Adaptor::~QAbstractNetworkCache_Adaptor() { } - -// Constructor QAbstractNetworkCache::QAbstractNetworkCache() (adaptor class) - -static void _init_ctor_QAbstractNetworkCache_Adaptor_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QAbstractNetworkCache_Adaptor_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QAbstractNetworkCache_Adaptor ()); -} - - -// qint64 QAbstractNetworkCache::cacheSize() - -static void _init_cbs_cacheSize_c0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_cacheSize_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QAbstractNetworkCache_Adaptor *)cls)->cbs_cacheSize_c0_0 ()); -} - -static void _set_callback_cbs_cacheSize_c0_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_cacheSize_c0_0 = cb; -} - - -// void QAbstractNetworkCache::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// void QAbstractNetworkCache::clear() - -static void _init_cbs_clear_0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_clear_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache_Adaptor *)cls)->cbs_clear_0_0 (); -} - -static void _set_callback_cbs_clear_0_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_clear_0_0 = cb; -} - - -// void QAbstractNetworkCache::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// QIODevice *QAbstractNetworkCache::data(const QUrl &url) - -static void _init_cbs_data_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_data_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((QIODevice *)((QAbstractNetworkCache_Adaptor *)cls)->cbs_data_1701_0 (arg1)); -} - -static void _set_callback_cbs_data_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_data_1701_0 = cb; -} - - -// emitter void QAbstractNetworkCache::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QAbstractNetworkCache_Adaptor *)cls)->emitter_QAbstractNetworkCache_destroyed_1302 (arg1); -} - - -// void QAbstractNetworkCache::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// bool QAbstractNetworkCache::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QAbstractNetworkCache::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// void QAbstractNetworkCache::insert(QIODevice *device) - -static void _init_cbs_insert_1447_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_insert_1447_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache_Adaptor *)cls)->cbs_insert_1447_0 (arg1); -} - -static void _set_callback_cbs_insert_1447_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_insert_1447_0 = cb; -} - - -// exposed bool QAbstractNetworkCache::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->fp_QAbstractNetworkCache_isSignalConnected_c2394 (arg1)); -} - - -// QNetworkCacheMetaData QAbstractNetworkCache::metaData(const QUrl &url) - -static void _init_cbs_metaData_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_metaData_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((QNetworkCacheMetaData)((QAbstractNetworkCache_Adaptor *)cls)->cbs_metaData_1701_0 (arg1)); -} - -static void _set_callback_cbs_metaData_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_metaData_1701_0 = cb; -} - - -// QIODevice *QAbstractNetworkCache::prepare(const QNetworkCacheMetaData &metaData) - -static void _init_cbs_prepare_3377_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("metaData"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_prepare_3377_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - ret.write ((QIODevice *)((QAbstractNetworkCache_Adaptor *)cls)->cbs_prepare_3377_0 (arg1)); -} - -static void _set_callback_cbs_prepare_3377_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_prepare_3377_0 = cb; -} - - -// exposed int QAbstractNetworkCache::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QAbstractNetworkCache_Adaptor *)cls)->fp_QAbstractNetworkCache_receivers_c1731 (arg1)); -} - - -// bool QAbstractNetworkCache::remove(const QUrl &url) - -static void _init_cbs_remove_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_remove_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->cbs_remove_1701_0 (arg1)); -} - -static void _set_callback_cbs_remove_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_remove_1701_0 = cb; -} - - -// exposed QObject *QAbstractNetworkCache::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QAbstractNetworkCache_Adaptor *)cls)->fp_QAbstractNetworkCache_sender_c0 ()); -} - - -// exposed int QAbstractNetworkCache::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QAbstractNetworkCache_Adaptor *)cls)->fp_QAbstractNetworkCache_senderSignalIndex_c0 ()); -} - - -// void QAbstractNetworkCache::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -// void QAbstractNetworkCache::updateMetaData(const QNetworkCacheMetaData &metaData) - -static void _init_cbs_updateMetaData_3377_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("metaData"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_updateMetaData_3377_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractNetworkCache_Adaptor *)cls)->cbs_updateMetaData_3377_0 (arg1); -} - -static void _set_callback_cbs_updateMetaData_3377_0 (void *cls, const gsi::Callback &cb) -{ - ((QAbstractNetworkCache_Adaptor *)cls)->cb_updateMetaData_3377_0 = cb; -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QAbstractNetworkCache (); - -static gsi::Methods methods_QAbstractNetworkCache_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAbstractNetworkCache::QAbstractNetworkCache()\nThis method creates an object of class QAbstractNetworkCache.", &_init_ctor_QAbstractNetworkCache_Adaptor_0, &_call_ctor_QAbstractNetworkCache_Adaptor_0); - methods += new qt_gsi::GenericMethod ("cacheSize", "@hide", true, &_init_cbs_cacheSize_c0_0, &_call_cbs_cacheSize_c0_0); - methods += new qt_gsi::GenericMethod ("cacheSize", "@brief Virtual method qint64 QAbstractNetworkCache::cacheSize()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_cacheSize_c0_0, &_call_cbs_cacheSize_c0_0, &_set_callback_cbs_cacheSize_c0_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QAbstractNetworkCache::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("clear", "@hide", false, &_init_cbs_clear_0_0, &_call_cbs_clear_0_0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Virtual method void QAbstractNetworkCache::clear()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_clear_0_0, &_call_cbs_clear_0_0, &_set_callback_cbs_clear_0_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QAbstractNetworkCache::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("data", "@hide", false, &_init_cbs_data_1701_0, &_call_cbs_data_1701_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Virtual method QIODevice *QAbstractNetworkCache::data(const QUrl &url)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_data_1701_0, &_call_cbs_data_1701_0, &_set_callback_cbs_data_1701_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QAbstractNetworkCache::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QAbstractNetworkCache::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QAbstractNetworkCache::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QAbstractNetworkCache::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("insert", "@hide", false, &_init_cbs_insert_1447_0, &_call_cbs_insert_1447_0); - methods += new qt_gsi::GenericMethod ("insert", "@brief Virtual method void QAbstractNetworkCache::insert(QIODevice *device)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_insert_1447_0, &_call_cbs_insert_1447_0, &_set_callback_cbs_insert_1447_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QAbstractNetworkCache::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("metaData", "@hide", false, &_init_cbs_metaData_1701_0, &_call_cbs_metaData_1701_0); - methods += new qt_gsi::GenericMethod ("metaData", "@brief Virtual method QNetworkCacheMetaData QAbstractNetworkCache::metaData(const QUrl &url)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_metaData_1701_0, &_call_cbs_metaData_1701_0, &_set_callback_cbs_metaData_1701_0); - methods += new qt_gsi::GenericMethod ("prepare", "@hide", false, &_init_cbs_prepare_3377_0, &_call_cbs_prepare_3377_0); - methods += new qt_gsi::GenericMethod ("prepare", "@brief Virtual method QIODevice *QAbstractNetworkCache::prepare(const QNetworkCacheMetaData &metaData)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_prepare_3377_0, &_call_cbs_prepare_3377_0, &_set_callback_cbs_prepare_3377_0); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QAbstractNetworkCache::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("remove", "@hide", false, &_init_cbs_remove_1701_0, &_call_cbs_remove_1701_0); - methods += new qt_gsi::GenericMethod ("remove", "@brief Virtual method bool QAbstractNetworkCache::remove(const QUrl &url)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_remove_1701_0, &_call_cbs_remove_1701_0, &_set_callback_cbs_remove_1701_0); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QAbstractNetworkCache::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QAbstractNetworkCache::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QAbstractNetworkCache::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("updateMetaData", "@hide", false, &_init_cbs_updateMetaData_3377_0, &_call_cbs_updateMetaData_3377_0); - methods += new qt_gsi::GenericMethod ("updateMetaData", "@brief Virtual method void QAbstractNetworkCache::updateMetaData(const QNetworkCacheMetaData &metaData)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_updateMetaData_3377_0, &_call_cbs_updateMetaData_3377_0, &_set_callback_cbs_updateMetaData_3377_0); - return methods; -} - -gsi::Class decl_QAbstractNetworkCache_Adaptor (qtdecl_QAbstractNetworkCache (), "QtMultimedia", "QAbstractNetworkCache", - methods_QAbstractNetworkCache_Adaptor (), - "@qt\n@brief Binding of QAbstractNetworkCache"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractSocket.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractSocket.cc deleted file mode 100644 index 7009adca3..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractSocket.cc +++ /dev/null @@ -1,1033 +0,0 @@ - -/* - - 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 gsiDeclQAbstractSocket.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QAbstractSocket - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QAbstractSocket::staticMetaObject); -} - - -// Constructor QAbstractSocket::QAbstractSocket(QAbstractSocket::SocketType socketType, QObject *parent) - - -static void _init_ctor_QAbstractSocket_4299 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socketType"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("parent"); - decl->add_arg (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QAbstractSocket_4299 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args.read (heap); - ret.write (new QAbstractSocket (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); -} - - -// void QAbstractSocket::abort() - - -static void _init_f_abort_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->abort (); -} - - -// () const - - -static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QAbstractSocket *)cls)->atEnd ()); -} - - -// bool QAbstractSocket::bind(const QHostAddress &address, quint16 port, QFlags mode) - - -static void _init_f_bind_6927 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port", true, "0"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("mode", true, "QAbstractSocket::DefaultForPlatform"); - decl->add_arg > (argspec_2); - decl->set_return (); -} - -static void _call_f_bind_6927 (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 (heap); - quint16 arg2 = args ? args.read (heap) : (quint16)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QAbstractSocket::DefaultForPlatform); - ret.write ((bool)((QAbstractSocket *)cls)->bind (arg1, arg2, arg3)); -} - - -// bool QAbstractSocket::bind(quint16 port, QFlags mode) - - -static void _init_f_bind_4517 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("port", true, "0"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("mode", true, "QAbstractSocket::DefaultForPlatform"); - decl->add_arg > (argspec_1); - decl->set_return (); -} - -static void _call_f_bind_4517 (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 (heap) : (quint16)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QAbstractSocket::DefaultForPlatform); - ret.write ((bool)((QAbstractSocket *)cls)->bind (arg1, arg2)); -} - - -// () const - - -static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QAbstractSocket *)cls)->bytesAvailable ()); -} - - -// () const - - -static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QAbstractSocket *)cls)->bytesToWrite ()); -} - - -// () const - - -static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QAbstractSocket *)cls)->canReadLine ()); -} - - -// () - - -static void _init_f_close_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_close_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->close (); -} - - -// void QAbstractSocket::connectToHost(const QString &hostName, quint16 port, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol) - - -static void _init_f_connectToHost_10218 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("mode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_2); - static gsi::ArgSpecBase argspec_3 ("protocol", true, "QAbstractSocket::AnyIPProtocol"); - decl->add_arg::target_type & > (argspec_3); - decl->set_return (); -} - -static void _call_f_connectToHost_10218 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol)); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->connectToHost (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); -} - - -// void QAbstractSocket::connectToHost(const QHostAddress &address, quint16 port, QFlags mode) - - -static void _init_f_connectToHost_6644 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("mode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_2); - decl->set_return (); -} - -static void _call_f_connectToHost_6644 (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 (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->connectToHost (arg1, arg2, arg3); -} - - -// void QAbstractSocket::disconnectFromHost() - - -static void _init_f_disconnectFromHost_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_disconnectFromHost_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->disconnectFromHost (); -} - - -// QAbstractSocket::SocketError QAbstractSocket::error() - - -static void _init_f_error_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_error_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAbstractSocket *)cls)->error ())); -} - - -// bool QAbstractSocket::flush() - - -static void _init_f_flush_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_flush_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QAbstractSocket *)cls)->flush ()); -} - - -// () const - - -static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isSequential_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QAbstractSocket *)cls)->isSequential ()); -} - - -// bool QAbstractSocket::isValid() - - -static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QAbstractSocket *)cls)->isValid ()); -} - - -// QHostAddress QAbstractSocket::localAddress() - - -static void _init_f_localAddress_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_localAddress_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QHostAddress)((QAbstractSocket *)cls)->localAddress ()); -} - - -// quint16 QAbstractSocket::localPort() - - -static void _init_f_localPort_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_localPort_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint16)((QAbstractSocket *)cls)->localPort ()); -} - - -// QFlags QAbstractSocket::pauseMode() - - -static void _init_f_pauseMode_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_pauseMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QFlags)((QAbstractSocket *)cls)->pauseMode ()); -} - - -// QHostAddress QAbstractSocket::peerAddress() - - -static void _init_f_peerAddress_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerAddress_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QHostAddress)((QAbstractSocket *)cls)->peerAddress ()); -} - - -// QString QAbstractSocket::peerName() - - -static void _init_f_peerName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QAbstractSocket *)cls)->peerName ()); -} - - -// quint16 QAbstractSocket::peerPort() - - -static void _init_f_peerPort_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerPort_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint16)((QAbstractSocket *)cls)->peerPort ()); -} - - -// QNetworkProxy QAbstractSocket::proxy() - - -static void _init_f_proxy_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_proxy_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkProxy)((QAbstractSocket *)cls)->proxy ()); -} - - -// qint64 QAbstractSocket::readBufferSize() - - -static void _init_f_readBufferSize_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_readBufferSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QAbstractSocket *)cls)->readBufferSize ()); -} - - -// void QAbstractSocket::resume() - - -static void _init_f_resume_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_resume_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->resume (); -} - - -// void QAbstractSocket::setPauseMode(QFlags pauseMode) - - -static void _init_f_setPauseMode_3665 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("pauseMode"); - decl->add_arg > (argspec_0); - decl->set_return (); -} - -static void _call_f_setPauseMode_3665 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QFlags arg1 = args.read > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->setPauseMode (arg1); -} - - -// void QAbstractSocket::setProxy(const QNetworkProxy &networkProxy) - - -static void _init_f_setProxy_2686 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("networkProxy"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->setProxy (arg1); -} - - -// void QAbstractSocket::setReadBufferSize(qint64 size) - - -static void _init_f_setReadBufferSize_986 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("size"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - qint64 arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->setReadBufferSize (arg1); -} - - -// bool QAbstractSocket::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor, QAbstractSocket::SocketState state, QFlags openMode) - - -static void _init_f_setSocketDescriptor_9696 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socketDescriptor"); - decl->add_arg::Signed > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("state", true, "QAbstractSocket::ConnectedState"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("openMode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_2); - decl->set_return (); -} - -static void _call_f_setSocketDescriptor_9696 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - ret.write ((bool)((QAbstractSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); -} - - -// void QAbstractSocket::setSocketOption(QAbstractSocket::SocketOption option, const QVariant &value) - - -static void _init_f_setSocketOption_5331 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("option"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setSocketOption_5331 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAbstractSocket *)cls)->setSocketOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); -} - - -// QIntegerForSizeof::Signed QAbstractSocket::socketDescriptor() - - -static void _init_f_socketDescriptor_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::Signed > (); -} - -static void _call_f_socketDescriptor_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::Signed > ((QIntegerForSizeof::Signed)((QAbstractSocket *)cls)->socketDescriptor ()); -} - - -// QVariant QAbstractSocket::socketOption(QAbstractSocket::SocketOption option) - - -static void _init_f_socketOption_3320 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("option"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_socketOption_3320 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((QVariant)((QAbstractSocket *)cls)->socketOption (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// QAbstractSocket::SocketType QAbstractSocket::socketType() - - -static void _init_f_socketType_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_socketType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAbstractSocket *)cls)->socketType ())); -} - - -// QAbstractSocket::SocketState QAbstractSocket::state() - - -static void _init_f_state_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAbstractSocket *)cls)->state ())); -} - - -// (int) - - -static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QAbstractSocket *)cls)->waitForBytesWritten (arg1)); -} - - -// bool QAbstractSocket::waitForConnected(int msecs) - - -static void _init_f_waitForConnected_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QAbstractSocket *)cls)->waitForConnected (arg1)); -} - - -// bool QAbstractSocket::waitForDisconnected(int msecs) - - -static void _init_f_waitForDisconnected_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QAbstractSocket *)cls)->waitForDisconnected (arg1)); -} - - -// (int) - - -static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QAbstractSocket *)cls)->waitForReadyRead (arg1)); -} - - -// static QString QAbstractSocket::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QAbstractSocket::tr (arg1, arg2, arg3)); -} - - -// static QString QAbstractSocket::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QAbstractSocket::trUtf8 (arg1, arg2, arg3)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QAbstractSocket () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAbstractSocket::QAbstractSocket(QAbstractSocket::SocketType socketType, QObject *parent)\nThis method creates an object of class QAbstractSocket.", &_init_ctor_QAbstractSocket_4299, &_call_ctor_QAbstractSocket_4299); - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QAbstractSocket::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QIODevice::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QAbstractSocket::bind(const QHostAddress &address, quint16 port, QFlags mode)\n", false, &_init_f_bind_6927, &_call_f_bind_6927); - methods += new qt_gsi::GenericMethod ("bind", "@brief Method bool QAbstractSocket::bind(quint16 port, QFlags mode)\n", false, &_init_f_bind_4517, &_call_f_bind_4517); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); - methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QAbstractSocket::connectToHost(const QString &hostName, quint16 port, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol)\n", false, &_init_f_connectToHost_10218, &_call_f_connectToHost_10218); - methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QAbstractSocket::connectToHost(const QHostAddress &address, quint16 port, QFlags mode)\n", false, &_init_f_connectToHost_6644, &_call_f_connectToHost_6644); - methods += new qt_gsi::GenericMethod ("disconnectFromHost", "@brief Method void QAbstractSocket::disconnectFromHost()\n", false, &_init_f_disconnectFromHost_0, &_call_f_disconnectFromHost_0); - methods += new qt_gsi::GenericMethod ("error", "@brief Method QAbstractSocket::SocketError QAbstractSocket::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); - methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QAbstractSocket::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QAbstractSocket::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("localAddress", "@brief Method QHostAddress QAbstractSocket::localAddress()\n", true, &_init_f_localAddress_c0, &_call_f_localAddress_c0); - methods += new qt_gsi::GenericMethod ("localPort", "@brief Method quint16 QAbstractSocket::localPort()\n", true, &_init_f_localPort_c0, &_call_f_localPort_c0); - methods += new qt_gsi::GenericMethod (":pauseMode", "@brief Method QFlags QAbstractSocket::pauseMode()\n", true, &_init_f_pauseMode_c0, &_call_f_pauseMode_c0); - methods += new qt_gsi::GenericMethod ("peerAddress", "@brief Method QHostAddress QAbstractSocket::peerAddress()\n", true, &_init_f_peerAddress_c0, &_call_f_peerAddress_c0); - methods += new qt_gsi::GenericMethod ("peerName", "@brief Method QString QAbstractSocket::peerName()\n", true, &_init_f_peerName_c0, &_call_f_peerName_c0); - methods += new qt_gsi::GenericMethod ("peerPort", "@brief Method quint16 QAbstractSocket::peerPort()\n", true, &_init_f_peerPort_c0, &_call_f_peerPort_c0); - methods += new qt_gsi::GenericMethod (":proxy", "@brief Method QNetworkProxy QAbstractSocket::proxy()\n", true, &_init_f_proxy_c0, &_call_f_proxy_c0); - methods += new qt_gsi::GenericMethod (":readBufferSize", "@brief Method qint64 QAbstractSocket::readBufferSize()\n", true, &_init_f_readBufferSize_c0, &_call_f_readBufferSize_c0); - methods += new qt_gsi::GenericMethod ("resume", "@brief Method void QAbstractSocket::resume()\n", false, &_init_f_resume_0, &_call_f_resume_0); - methods += new qt_gsi::GenericMethod ("setPauseMode|pauseMode=", "@brief Method void QAbstractSocket::setPauseMode(QFlags pauseMode)\n", false, &_init_f_setPauseMode_3665, &_call_f_setPauseMode_3665); - methods += new qt_gsi::GenericMethod ("setProxy|proxy=", "@brief Method void QAbstractSocket::setProxy(const QNetworkProxy &networkProxy)\n", false, &_init_f_setProxy_2686, &_call_f_setProxy_2686); - methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method void QAbstractSocket::setReadBufferSize(qint64 size)\n", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); - methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method bool QAbstractSocket::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor, QAbstractSocket::SocketState state, QFlags openMode)\n", false, &_init_f_setSocketDescriptor_9696, &_call_f_setSocketDescriptor_9696); - methods += new qt_gsi::GenericMethod ("setSocketOption", "@brief Method void QAbstractSocket::setSocketOption(QAbstractSocket::SocketOption option, const QVariant &value)\n", false, &_init_f_setSocketOption_5331, &_call_f_setSocketOption_5331); - methods += new qt_gsi::GenericMethod ("socketDescriptor", "@brief Method QIntegerForSizeof::Signed QAbstractSocket::socketDescriptor()\n", true, &_init_f_socketDescriptor_c0, &_call_f_socketDescriptor_c0); - methods += new qt_gsi::GenericMethod ("socketOption", "@brief Method QVariant QAbstractSocket::socketOption(QAbstractSocket::SocketOption option)\n", false, &_init_f_socketOption_3320, &_call_f_socketOption_3320); - methods += new qt_gsi::GenericMethod ("socketType", "@brief Method QAbstractSocket::SocketType QAbstractSocket::socketType()\n", true, &_init_f_socketType_c0, &_call_f_socketType_c0); - methods += new qt_gsi::GenericMethod ("state", "@brief Method QAbstractSocket::SocketState QAbstractSocket::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); - methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method bool QAbstractSocket::waitForConnected(int msecs)\n", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); - methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method bool QAbstractSocket::waitForDisconnected(int msecs)\n", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); - methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QAbstractSocket::aboutToClose()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QAbstractSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QAbstractSocket::connected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QAbstractSocket::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("disconnected()", "disconnected", "@brief Signal declaration for QAbstractSocket::disconnected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("error(QAbstractSocket::SocketError)", "error_sig", gsi::arg("arg1"), "@brief Signal declaration for QAbstractSocket::error(QAbstractSocket::SocketError)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("hostFound()", "hostFound", "@brief Signal declaration for QAbstractSocket::hostFound()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("proxyAuthenticationRequired(const QNetworkProxy &, QAuthenticator *)", "proxyAuthenticationRequired", gsi::arg("proxy"), gsi::arg("authenticator"), "@brief Signal declaration for QAbstractSocket::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readChannelFinished()", "readChannelFinished", "@brief Signal declaration for QAbstractSocket::readChannelFinished()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readyRead()", "readyRead", "@brief Signal declaration for QAbstractSocket::readyRead()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("stateChanged(QAbstractSocket::SocketState)", "stateChanged", gsi::arg("arg1"), "@brief Signal declaration for QAbstractSocket::stateChanged(QAbstractSocket::SocketState)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QAbstractSocket::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 QAbstractSocket::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 &qtdecl_QIODevice (); - -qt_gsi::QtNativeClass decl_QAbstractSocket (qtdecl_QIODevice (), "QtMultimedia", "QAbstractSocket", - methods_QAbstractSocket (), - "@qt\n@brief Binding of QAbstractSocket"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAbstractSocket () { return decl_QAbstractSocket; } - -} - - -// Implementation of the enum wrapper class for QAbstractSocket::BindFlag -namespace qt_gsi -{ - -static gsi::Enum decl_QAbstractSocket_BindFlag_Enum ("QtMultimedia", "QAbstractSocket_BindFlag", - gsi::enum_const ("DefaultForPlatform", QAbstractSocket::DefaultForPlatform, "@brief Enum constant QAbstractSocket::DefaultForPlatform") + - gsi::enum_const ("ShareAddress", QAbstractSocket::ShareAddress, "@brief Enum constant QAbstractSocket::ShareAddress") + - gsi::enum_const ("DontShareAddress", QAbstractSocket::DontShareAddress, "@brief Enum constant QAbstractSocket::DontShareAddress") + - gsi::enum_const ("ReuseAddressHint", QAbstractSocket::ReuseAddressHint, "@brief Enum constant QAbstractSocket::ReuseAddressHint"), - "@qt\n@brief This class represents the QAbstractSocket::BindFlag enum"); - -static gsi::QFlagsClass decl_QAbstractSocket_BindFlag_Enums ("QtMultimedia", "QAbstractSocket_QFlags_BindFlag", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QAbstractSocket_BindFlag_Enum_in_parent (decl_QAbstractSocket_BindFlag_Enum.defs ()); -static gsi::ClassExt decl_QAbstractSocket_BindFlag_Enum_as_child (decl_QAbstractSocket_BindFlag_Enum, "BindFlag"); -static gsi::ClassExt decl_QAbstractSocket_BindFlag_Enums_as_child (decl_QAbstractSocket_BindFlag_Enums, "QFlags_BindFlag"); - -} - - -// Implementation of the enum wrapper class for QAbstractSocket::NetworkLayerProtocol -namespace qt_gsi -{ - -static gsi::Enum decl_QAbstractSocket_NetworkLayerProtocol_Enum ("QtMultimedia", "QAbstractSocket_NetworkLayerProtocol", - gsi::enum_const ("IPv4Protocol", QAbstractSocket::IPv4Protocol, "@brief Enum constant QAbstractSocket::IPv4Protocol") + - gsi::enum_const ("IPv6Protocol", QAbstractSocket::IPv6Protocol, "@brief Enum constant QAbstractSocket::IPv6Protocol") + - gsi::enum_const ("AnyIPProtocol", QAbstractSocket::AnyIPProtocol, "@brief Enum constant QAbstractSocket::AnyIPProtocol") + - gsi::enum_const ("UnknownNetworkLayerProtocol", QAbstractSocket::UnknownNetworkLayerProtocol, "@brief Enum constant QAbstractSocket::UnknownNetworkLayerProtocol"), - "@qt\n@brief This class represents the QAbstractSocket::NetworkLayerProtocol enum"); - -static gsi::QFlagsClass decl_QAbstractSocket_NetworkLayerProtocol_Enums ("QtMultimedia", "QAbstractSocket_QFlags_NetworkLayerProtocol", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QAbstractSocket_NetworkLayerProtocol_Enum_in_parent (decl_QAbstractSocket_NetworkLayerProtocol_Enum.defs ()); -static gsi::ClassExt decl_QAbstractSocket_NetworkLayerProtocol_Enum_as_child (decl_QAbstractSocket_NetworkLayerProtocol_Enum, "NetworkLayerProtocol"); -static gsi::ClassExt decl_QAbstractSocket_NetworkLayerProtocol_Enums_as_child (decl_QAbstractSocket_NetworkLayerProtocol_Enums, "QFlags_NetworkLayerProtocol"); - -} - - -// Implementation of the enum wrapper class for QAbstractSocket::PauseMode -namespace qt_gsi -{ - -static gsi::Enum decl_QAbstractSocket_PauseMode_Enum ("QtMultimedia", "QAbstractSocket_PauseMode", - gsi::enum_const ("PauseNever", QAbstractSocket::PauseNever, "@brief Enum constant QAbstractSocket::PauseNever") + - gsi::enum_const ("PauseOnSslErrors", QAbstractSocket::PauseOnSslErrors, "@brief Enum constant QAbstractSocket::PauseOnSslErrors"), - "@qt\n@brief This class represents the QAbstractSocket::PauseMode enum"); - -static gsi::QFlagsClass decl_QAbstractSocket_PauseMode_Enums ("QtMultimedia", "QAbstractSocket_QFlags_PauseMode", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QAbstractSocket_PauseMode_Enum_in_parent (decl_QAbstractSocket_PauseMode_Enum.defs ()); -static gsi::ClassExt decl_QAbstractSocket_PauseMode_Enum_as_child (decl_QAbstractSocket_PauseMode_Enum, "PauseMode"); -static gsi::ClassExt decl_QAbstractSocket_PauseMode_Enums_as_child (decl_QAbstractSocket_PauseMode_Enums, "QFlags_PauseMode"); - -} - - -// Implementation of the enum wrapper class for QAbstractSocket::SocketError -namespace qt_gsi -{ - -static gsi::Enum decl_QAbstractSocket_SocketError_Enum ("QtMultimedia", "QAbstractSocket_SocketError", - gsi::enum_const ("ConnectionRefusedError", QAbstractSocket::ConnectionRefusedError, "@brief Enum constant QAbstractSocket::ConnectionRefusedError") + - gsi::enum_const ("RemoteHostClosedError", QAbstractSocket::RemoteHostClosedError, "@brief Enum constant QAbstractSocket::RemoteHostClosedError") + - gsi::enum_const ("HostNotFoundError", QAbstractSocket::HostNotFoundError, "@brief Enum constant QAbstractSocket::HostNotFoundError") + - gsi::enum_const ("SocketAccessError", QAbstractSocket::SocketAccessError, "@brief Enum constant QAbstractSocket::SocketAccessError") + - gsi::enum_const ("SocketResourceError", QAbstractSocket::SocketResourceError, "@brief Enum constant QAbstractSocket::SocketResourceError") + - gsi::enum_const ("SocketTimeoutError", QAbstractSocket::SocketTimeoutError, "@brief Enum constant QAbstractSocket::SocketTimeoutError") + - gsi::enum_const ("DatagramTooLargeError", QAbstractSocket::DatagramTooLargeError, "@brief Enum constant QAbstractSocket::DatagramTooLargeError") + - gsi::enum_const ("NetworkError", QAbstractSocket::NetworkError, "@brief Enum constant QAbstractSocket::NetworkError") + - gsi::enum_const ("AddressInUseError", QAbstractSocket::AddressInUseError, "@brief Enum constant QAbstractSocket::AddressInUseError") + - gsi::enum_const ("SocketAddressNotAvailableError", QAbstractSocket::SocketAddressNotAvailableError, "@brief Enum constant QAbstractSocket::SocketAddressNotAvailableError") + - gsi::enum_const ("UnsupportedSocketOperationError", QAbstractSocket::UnsupportedSocketOperationError, "@brief Enum constant QAbstractSocket::UnsupportedSocketOperationError") + - gsi::enum_const ("UnfinishedSocketOperationError", QAbstractSocket::UnfinishedSocketOperationError, "@brief Enum constant QAbstractSocket::UnfinishedSocketOperationError") + - gsi::enum_const ("ProxyAuthenticationRequiredError", QAbstractSocket::ProxyAuthenticationRequiredError, "@brief Enum constant QAbstractSocket::ProxyAuthenticationRequiredError") + - gsi::enum_const ("SslHandshakeFailedError", QAbstractSocket::SslHandshakeFailedError, "@brief Enum constant QAbstractSocket::SslHandshakeFailedError") + - gsi::enum_const ("ProxyConnectionRefusedError", QAbstractSocket::ProxyConnectionRefusedError, "@brief Enum constant QAbstractSocket::ProxyConnectionRefusedError") + - gsi::enum_const ("ProxyConnectionClosedError", QAbstractSocket::ProxyConnectionClosedError, "@brief Enum constant QAbstractSocket::ProxyConnectionClosedError") + - gsi::enum_const ("ProxyConnectionTimeoutError", QAbstractSocket::ProxyConnectionTimeoutError, "@brief Enum constant QAbstractSocket::ProxyConnectionTimeoutError") + - gsi::enum_const ("ProxyNotFoundError", QAbstractSocket::ProxyNotFoundError, "@brief Enum constant QAbstractSocket::ProxyNotFoundError") + - gsi::enum_const ("ProxyProtocolError", QAbstractSocket::ProxyProtocolError, "@brief Enum constant QAbstractSocket::ProxyProtocolError") + - gsi::enum_const ("OperationError", QAbstractSocket::OperationError, "@brief Enum constant QAbstractSocket::OperationError") + - gsi::enum_const ("SslInternalError", QAbstractSocket::SslInternalError, "@brief Enum constant QAbstractSocket::SslInternalError") + - gsi::enum_const ("SslInvalidUserDataError", QAbstractSocket::SslInvalidUserDataError, "@brief Enum constant QAbstractSocket::SslInvalidUserDataError") + - gsi::enum_const ("TemporaryError", QAbstractSocket::TemporaryError, "@brief Enum constant QAbstractSocket::TemporaryError") + - gsi::enum_const ("UnknownSocketError", QAbstractSocket::UnknownSocketError, "@brief Enum constant QAbstractSocket::UnknownSocketError"), - "@qt\n@brief This class represents the QAbstractSocket::SocketError enum"); - -static gsi::QFlagsClass decl_QAbstractSocket_SocketError_Enums ("QtMultimedia", "QAbstractSocket_QFlags_SocketError", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QAbstractSocket_SocketError_Enum_in_parent (decl_QAbstractSocket_SocketError_Enum.defs ()); -static gsi::ClassExt decl_QAbstractSocket_SocketError_Enum_as_child (decl_QAbstractSocket_SocketError_Enum, "SocketError"); -static gsi::ClassExt decl_QAbstractSocket_SocketError_Enums_as_child (decl_QAbstractSocket_SocketError_Enums, "QFlags_SocketError"); - -} - - -// Implementation of the enum wrapper class for QAbstractSocket::SocketOption -namespace qt_gsi -{ - -static gsi::Enum decl_QAbstractSocket_SocketOption_Enum ("QtMultimedia", "QAbstractSocket_SocketOption", - gsi::enum_const ("LowDelayOption", QAbstractSocket::LowDelayOption, "@brief Enum constant QAbstractSocket::LowDelayOption") + - gsi::enum_const ("KeepAliveOption", QAbstractSocket::KeepAliveOption, "@brief Enum constant QAbstractSocket::KeepAliveOption") + - gsi::enum_const ("MulticastTtlOption", QAbstractSocket::MulticastTtlOption, "@brief Enum constant QAbstractSocket::MulticastTtlOption") + - gsi::enum_const ("MulticastLoopbackOption", QAbstractSocket::MulticastLoopbackOption, "@brief Enum constant QAbstractSocket::MulticastLoopbackOption") + - gsi::enum_const ("TypeOfServiceOption", QAbstractSocket::TypeOfServiceOption, "@brief Enum constant QAbstractSocket::TypeOfServiceOption") + - gsi::enum_const ("SendBufferSizeSocketOption", QAbstractSocket::SendBufferSizeSocketOption, "@brief Enum constant QAbstractSocket::SendBufferSizeSocketOption") + - gsi::enum_const ("ReceiveBufferSizeSocketOption", QAbstractSocket::ReceiveBufferSizeSocketOption, "@brief Enum constant QAbstractSocket::ReceiveBufferSizeSocketOption"), - "@qt\n@brief This class represents the QAbstractSocket::SocketOption enum"); - -static gsi::QFlagsClass decl_QAbstractSocket_SocketOption_Enums ("QtMultimedia", "QAbstractSocket_QFlags_SocketOption", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QAbstractSocket_SocketOption_Enum_in_parent (decl_QAbstractSocket_SocketOption_Enum.defs ()); -static gsi::ClassExt decl_QAbstractSocket_SocketOption_Enum_as_child (decl_QAbstractSocket_SocketOption_Enum, "SocketOption"); -static gsi::ClassExt decl_QAbstractSocket_SocketOption_Enums_as_child (decl_QAbstractSocket_SocketOption_Enums, "QFlags_SocketOption"); - -} - - -// Implementation of the enum wrapper class for QAbstractSocket::SocketState -namespace qt_gsi -{ - -static gsi::Enum decl_QAbstractSocket_SocketState_Enum ("QtMultimedia", "QAbstractSocket_SocketState", - gsi::enum_const ("UnconnectedState", QAbstractSocket::UnconnectedState, "@brief Enum constant QAbstractSocket::UnconnectedState") + - gsi::enum_const ("HostLookupState", QAbstractSocket::HostLookupState, "@brief Enum constant QAbstractSocket::HostLookupState") + - gsi::enum_const ("ConnectingState", QAbstractSocket::ConnectingState, "@brief Enum constant QAbstractSocket::ConnectingState") + - gsi::enum_const ("ConnectedState", QAbstractSocket::ConnectedState, "@brief Enum constant QAbstractSocket::ConnectedState") + - gsi::enum_const ("BoundState", QAbstractSocket::BoundState, "@brief Enum constant QAbstractSocket::BoundState") + - gsi::enum_const ("ListeningState", QAbstractSocket::ListeningState, "@brief Enum constant QAbstractSocket::ListeningState") + - gsi::enum_const ("ClosingState", QAbstractSocket::ClosingState, "@brief Enum constant QAbstractSocket::ClosingState"), - "@qt\n@brief This class represents the QAbstractSocket::SocketState enum"); - -static gsi::QFlagsClass decl_QAbstractSocket_SocketState_Enums ("QtMultimedia", "QAbstractSocket_QFlags_SocketState", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QAbstractSocket_SocketState_Enum_in_parent (decl_QAbstractSocket_SocketState_Enum.defs ()); -static gsi::ClassExt decl_QAbstractSocket_SocketState_Enum_as_child (decl_QAbstractSocket_SocketState_Enum, "SocketState"); -static gsi::ClassExt decl_QAbstractSocket_SocketState_Enums_as_child (decl_QAbstractSocket_SocketState_Enums, "QFlags_SocketState"); - -} - - -// Implementation of the enum wrapper class for QAbstractSocket::SocketType -namespace qt_gsi -{ - -static gsi::Enum decl_QAbstractSocket_SocketType_Enum ("QtMultimedia", "QAbstractSocket_SocketType", - gsi::enum_const ("TcpSocket", QAbstractSocket::TcpSocket, "@brief Enum constant QAbstractSocket::TcpSocket") + - gsi::enum_const ("UdpSocket", QAbstractSocket::UdpSocket, "@brief Enum constant QAbstractSocket::UdpSocket") + - gsi::enum_const ("UnknownSocketType", QAbstractSocket::UnknownSocketType, "@brief Enum constant QAbstractSocket::UnknownSocketType"), - "@qt\n@brief This class represents the QAbstractSocket::SocketType enum"); - -static gsi::QFlagsClass decl_QAbstractSocket_SocketType_Enums ("QtMultimedia", "QAbstractSocket_QFlags_SocketType", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QAbstractSocket_SocketType_Enum_in_parent (decl_QAbstractSocket_SocketType_Enum.defs ()); -static gsi::ClassExt decl_QAbstractSocket_SocketType_Enum_as_child (decl_QAbstractSocket_SocketType_Enum, "SocketType"); -static gsi::ClassExt decl_QAbstractSocket_SocketType_Enums_as_child (decl_QAbstractSocket_SocketType_Enums, "QFlags_SocketType"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoBuffer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoBuffer.cc index 5ebd8a141..742ee7481 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoBuffer.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoBuffer.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc index 95877c56c..c0034abbf 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc index f760ac80e..4cc5f6f18 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudio.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudio.cc index c93159bc4..3bea29bb8 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudio.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudio.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioBuffer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioBuffer.cc index 15c3db510..0c7fbc8d3 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioBuffer.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioBuffer.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc index 3f8478935..4a96954be 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc index e8e845921..4c06531f9 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDeviceInfo.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDeviceInfo.cc index be6db1456..a530a41ad 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDeviceInfo.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDeviceInfo.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettings.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettings.cc index 560129ac8..974209cbb 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettings.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettings.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc index 4ea81ef7e..ce182ea31 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioFormat.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioFormat.cc index 891ccee9a..04aa781df 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioFormat.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioFormat.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc index 1035851bb..d8f0518ca 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc index 8d110ef91..df8bc34a9 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc index 581c21991..3af01a70c 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc index 0f7933440..83bdc3c9d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc index dfe78ff8e..0a3c15bb2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc index f03af371d..eb9798971 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc index eb3bed585..4b0c77d18 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc index dd64c89e7..935cc5b7f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAuthenticator.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAuthenticator.cc deleted file mode 100644 index 92b049944..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAuthenticator.cc +++ /dev/null @@ -1,356 +0,0 @@ - -/* - - 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 gsiDeclQAuthenticator.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QAuthenticator - -// Constructor QAuthenticator::QAuthenticator() - - -static void _init_ctor_QAuthenticator_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QAuthenticator_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QAuthenticator ()); -} - - -// Constructor QAuthenticator::QAuthenticator(const QAuthenticator &other) - - -static void _init_ctor_QAuthenticator_2765 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QAuthenticator_2765 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); - ret.write (new QAuthenticator (arg1)); -} - - -// void QAuthenticator::detach() - - -static void _init_f_detach_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_detach_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAuthenticator *)cls)->detach (); -} - - -// bool QAuthenticator::isNull() - - -static void _init_f_isNull_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isNull_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QAuthenticator *)cls)->isNull ()); -} - - -// bool QAuthenticator::operator!=(const QAuthenticator &other) - - -static void _init_f_operator_excl__eq__c2765 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2765 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); - ret.write ((bool)((QAuthenticator *)cls)->operator!= (arg1)); -} - - -// QAuthenticator &QAuthenticator::operator=(const QAuthenticator &other) - - -static void _init_f_operator_eq__2765 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2765 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); - ret.write ((QAuthenticator &)((QAuthenticator *)cls)->operator= (arg1)); -} - - -// bool QAuthenticator::operator==(const QAuthenticator &other) - - -static void _init_f_operator_eq__eq__c2765 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2765 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); - ret.write ((bool)((QAuthenticator *)cls)->operator== (arg1)); -} - - -// QVariant QAuthenticator::option(const QString &opt) - - -static void _init_f_option_c2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("opt"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_option_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QVariant)((QAuthenticator *)cls)->option (arg1)); -} - - -// QHash QAuthenticator::options() - - -static void _init_f_options_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_options_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QHash)((QAuthenticator *)cls)->options ()); -} - - -// QString QAuthenticator::password() - - -static void _init_f_password_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_password_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QAuthenticator *)cls)->password ()); -} - - -// QString QAuthenticator::realm() - - -static void _init_f_realm_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_realm_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QAuthenticator *)cls)->realm ()); -} - - -// void QAuthenticator::setOption(const QString &opt, const QVariant &value) - - -static void _init_f_setOption_4036 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("opt"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setOption_4036 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAuthenticator *)cls)->setOption (arg1, arg2); -} - - -// void QAuthenticator::setPassword(const QString &password) - - -static void _init_f_setPassword_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("password"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAuthenticator *)cls)->setPassword (arg1); -} - - -// void QAuthenticator::setRealm(const QString &realm) - - -static void _init_f_setRealm_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("realm"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setRealm_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAuthenticator *)cls)->setRealm (arg1); -} - - -// void QAuthenticator::setUser(const QString &user) - - -static void _init_f_setUser_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("user"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setUser_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QAuthenticator *)cls)->setUser (arg1); -} - - -// QString QAuthenticator::user() - - -static void _init_f_user_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_user_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QAuthenticator *)cls)->user ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QAuthenticator () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAuthenticator::QAuthenticator()\nThis method creates an object of class QAuthenticator.", &_init_ctor_QAuthenticator_0, &_call_ctor_QAuthenticator_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QAuthenticator::QAuthenticator(const QAuthenticator &other)\nThis method creates an object of class QAuthenticator.", &_init_ctor_QAuthenticator_2765, &_call_ctor_QAuthenticator_2765); - methods += new qt_gsi::GenericMethod ("detach", "@brief Method void QAuthenticator::detach()\n", false, &_init_f_detach_0, &_call_f_detach_0); - methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QAuthenticator::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QAuthenticator::operator!=(const QAuthenticator &other)\n", true, &_init_f_operator_excl__eq__c2765, &_call_f_operator_excl__eq__c2765); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QAuthenticator &QAuthenticator::operator=(const QAuthenticator &other)\n", false, &_init_f_operator_eq__2765, &_call_f_operator_eq__2765); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QAuthenticator::operator==(const QAuthenticator &other)\n", true, &_init_f_operator_eq__eq__c2765, &_call_f_operator_eq__eq__c2765); - methods += new qt_gsi::GenericMethod ("option", "@brief Method QVariant QAuthenticator::option(const QString &opt)\n", true, &_init_f_option_c2025, &_call_f_option_c2025); - methods += new qt_gsi::GenericMethod ("options", "@brief Method QHash QAuthenticator::options()\n", true, &_init_f_options_c0, &_call_f_options_c0); - methods += new qt_gsi::GenericMethod (":password", "@brief Method QString QAuthenticator::password()\n", true, &_init_f_password_c0, &_call_f_password_c0); - methods += new qt_gsi::GenericMethod (":realm", "@brief Method QString QAuthenticator::realm()\n", true, &_init_f_realm_c0, &_call_f_realm_c0); - methods += new qt_gsi::GenericMethod ("setOption", "@brief Method void QAuthenticator::setOption(const QString &opt, const QVariant &value)\n", false, &_init_f_setOption_4036, &_call_f_setOption_4036); - methods += new qt_gsi::GenericMethod ("setPassword|password=", "@brief Method void QAuthenticator::setPassword(const QString &password)\n", false, &_init_f_setPassword_2025, &_call_f_setPassword_2025); - methods += new qt_gsi::GenericMethod ("setRealm|realm=", "@brief Method void QAuthenticator::setRealm(const QString &realm)\n", false, &_init_f_setRealm_2025, &_call_f_setRealm_2025); - methods += new qt_gsi::GenericMethod ("setUser|user=", "@brief Method void QAuthenticator::setUser(const QString &user)\n", false, &_init_f_setUser_2025, &_call_f_setUser_2025); - methods += new qt_gsi::GenericMethod (":user", "@brief Method QString QAuthenticator::user()\n", true, &_init_f_user_c0, &_call_f_user_c0); - return methods; -} - -gsi::Class decl_QAuthenticator ("QtMultimedia", "QAuthenticator", - methods_QAuthenticator (), - "@qt\n@brief Binding of QAuthenticator"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAuthenticator () { return decl_QAuthenticator; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc index 47ae1348d..dbc206ef2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc index e164b3dda..82e8a5415 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc index dcc45dfca..c4a93228a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc index fe63151c4..3f6a81536 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposure.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposure.cc index 4737b485c..9ecb68220 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposure.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposure.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc index 22e7b50b2..44c6b316e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc index 0fbdec081..674f35d00 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc index ed1f2a946..691c30325 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocus.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocus.cc index cb1cc9536..e7f67b46a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocus.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocus.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc index 8564464b8..25ff0732d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusZone.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusZone.cc index 6c3a32e97..270485200 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusZone.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusZone.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc index 92b60439a..8a54f68f1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc index a6b51f921..002e6337f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessing.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessing.cc index 25a83f56d..23094943c 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessing.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessing.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc index 44fc3e7c2..3a2cb4f9f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfo.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfo.cc index 221fb8fa1..fc0b05a2e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfo.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfo.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc index cd8685e17..8c20f9e79 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc index 799eb7e75..c09f6e444 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettings.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettings.cc index 3665bd5fe..ee64a098b 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettings.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettings.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc index 23f6dbf12..aca7fdd0e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc index 1c5afaa98..10c04863e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc index 636ea213c..5f8b58106 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera_FrameRateRange.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera_FrameRateRange.cc index c4b340a06..67ff3f365 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera_FrameRateRange.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera_FrameRateRange.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsDomainNameRecord.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsDomainNameRecord.cc deleted file mode 100644 index 3e2ff9205..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsDomainNameRecord.cc +++ /dev/null @@ -1,181 +0,0 @@ - -/* - - 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 gsiDeclQDnsDomainNameRecord.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QDnsDomainNameRecord - -// Constructor QDnsDomainNameRecord::QDnsDomainNameRecord() - - -static void _init_ctor_QDnsDomainNameRecord_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QDnsDomainNameRecord_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QDnsDomainNameRecord ()); -} - - -// Constructor QDnsDomainNameRecord::QDnsDomainNameRecord(const QDnsDomainNameRecord &other) - - -static void _init_ctor_QDnsDomainNameRecord_3279 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QDnsDomainNameRecord_3279 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsDomainNameRecord &arg1 = args.read (heap); - ret.write (new QDnsDomainNameRecord (arg1)); -} - - -// QString QDnsDomainNameRecord::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsDomainNameRecord *)cls)->name ()); -} - - -// QDnsDomainNameRecord &QDnsDomainNameRecord::operator=(const QDnsDomainNameRecord &other) - - -static void _init_f_operator_eq__3279 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3279 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsDomainNameRecord &arg1 = args.read (heap); - ret.write ((QDnsDomainNameRecord &)((QDnsDomainNameRecord *)cls)->operator= (arg1)); -} - - -// void QDnsDomainNameRecord::swap(QDnsDomainNameRecord &other) - - -static void _init_f_swap_2584 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2584 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QDnsDomainNameRecord &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsDomainNameRecord *)cls)->swap (arg1); -} - - -// quint32 QDnsDomainNameRecord::timeToLive() - - -static void _init_f_timeToLive_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_timeToLive_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint32)((QDnsDomainNameRecord *)cls)->timeToLive ()); -} - - -// QString QDnsDomainNameRecord::value() - - -static void _init_f_value_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_value_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsDomainNameRecord *)cls)->value ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QDnsDomainNameRecord () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsDomainNameRecord::QDnsDomainNameRecord()\nThis method creates an object of class QDnsDomainNameRecord.", &_init_ctor_QDnsDomainNameRecord_0, &_call_ctor_QDnsDomainNameRecord_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsDomainNameRecord::QDnsDomainNameRecord(const QDnsDomainNameRecord &other)\nThis method creates an object of class QDnsDomainNameRecord.", &_init_ctor_QDnsDomainNameRecord_3279, &_call_ctor_QDnsDomainNameRecord_3279); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDnsDomainNameRecord::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDnsDomainNameRecord &QDnsDomainNameRecord::operator=(const QDnsDomainNameRecord &other)\n", false, &_init_f_operator_eq__3279, &_call_f_operator_eq__3279); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QDnsDomainNameRecord::swap(QDnsDomainNameRecord &other)\n", false, &_init_f_swap_2584, &_call_f_swap_2584); - methods += new qt_gsi::GenericMethod ("timeToLive", "@brief Method quint32 QDnsDomainNameRecord::timeToLive()\n", true, &_init_f_timeToLive_c0, &_call_f_timeToLive_c0); - methods += new qt_gsi::GenericMethod ("value", "@brief Method QString QDnsDomainNameRecord::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); - return methods; -} - -gsi::Class decl_QDnsDomainNameRecord ("QtMultimedia", "QDnsDomainNameRecord", - methods_QDnsDomainNameRecord (), - "@qt\n@brief Binding of QDnsDomainNameRecord"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QDnsDomainNameRecord () { return decl_QDnsDomainNameRecord; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsHostAddressRecord.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsHostAddressRecord.cc deleted file mode 100644 index 0cdbe1496..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsHostAddressRecord.cc +++ /dev/null @@ -1,182 +0,0 @@ - -/* - - 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 gsiDeclQDnsHostAddressRecord.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QDnsHostAddressRecord - -// Constructor QDnsHostAddressRecord::QDnsHostAddressRecord() - - -static void _init_ctor_QDnsHostAddressRecord_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QDnsHostAddressRecord_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QDnsHostAddressRecord ()); -} - - -// Constructor QDnsHostAddressRecord::QDnsHostAddressRecord(const QDnsHostAddressRecord &other) - - -static void _init_ctor_QDnsHostAddressRecord_3418 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QDnsHostAddressRecord_3418 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsHostAddressRecord &arg1 = args.read (heap); - ret.write (new QDnsHostAddressRecord (arg1)); -} - - -// QString QDnsHostAddressRecord::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsHostAddressRecord *)cls)->name ()); -} - - -// QDnsHostAddressRecord &QDnsHostAddressRecord::operator=(const QDnsHostAddressRecord &other) - - -static void _init_f_operator_eq__3418 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3418 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsHostAddressRecord &arg1 = args.read (heap); - ret.write ((QDnsHostAddressRecord &)((QDnsHostAddressRecord *)cls)->operator= (arg1)); -} - - -// void QDnsHostAddressRecord::swap(QDnsHostAddressRecord &other) - - -static void _init_f_swap_2723 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2723 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QDnsHostAddressRecord &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsHostAddressRecord *)cls)->swap (arg1); -} - - -// quint32 QDnsHostAddressRecord::timeToLive() - - -static void _init_f_timeToLive_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_timeToLive_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint32)((QDnsHostAddressRecord *)cls)->timeToLive ()); -} - - -// QHostAddress QDnsHostAddressRecord::value() - - -static void _init_f_value_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_value_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QHostAddress)((QDnsHostAddressRecord *)cls)->value ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QDnsHostAddressRecord () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsHostAddressRecord::QDnsHostAddressRecord()\nThis method creates an object of class QDnsHostAddressRecord.", &_init_ctor_QDnsHostAddressRecord_0, &_call_ctor_QDnsHostAddressRecord_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsHostAddressRecord::QDnsHostAddressRecord(const QDnsHostAddressRecord &other)\nThis method creates an object of class QDnsHostAddressRecord.", &_init_ctor_QDnsHostAddressRecord_3418, &_call_ctor_QDnsHostAddressRecord_3418); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDnsHostAddressRecord::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDnsHostAddressRecord &QDnsHostAddressRecord::operator=(const QDnsHostAddressRecord &other)\n", false, &_init_f_operator_eq__3418, &_call_f_operator_eq__3418); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QDnsHostAddressRecord::swap(QDnsHostAddressRecord &other)\n", false, &_init_f_swap_2723, &_call_f_swap_2723); - methods += new qt_gsi::GenericMethod ("timeToLive", "@brief Method quint32 QDnsHostAddressRecord::timeToLive()\n", true, &_init_f_timeToLive_c0, &_call_f_timeToLive_c0); - methods += new qt_gsi::GenericMethod ("value", "@brief Method QHostAddress QDnsHostAddressRecord::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); - return methods; -} - -gsi::Class decl_QDnsHostAddressRecord ("QtMultimedia", "QDnsHostAddressRecord", - methods_QDnsHostAddressRecord (), - "@qt\n@brief Binding of QDnsHostAddressRecord"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QDnsHostAddressRecord () { return decl_QDnsHostAddressRecord; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsLookup.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsLookup.cc deleted file mode 100644 index 8037f014c..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsLookup.cc +++ /dev/null @@ -1,1094 +0,0 @@ - -/* - - 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 gsiDeclQDnsLookup.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QDnsLookup - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QDnsLookup::staticMetaObject); -} - - -// void QDnsLookup::abort() - - -static void _init_f_abort_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup *)cls)->abort (); -} - - -// QList QDnsLookup::canonicalNameRecords() - - -static void _init_f_canonicalNameRecords_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_canonicalNameRecords_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QDnsLookup *)cls)->canonicalNameRecords ()); -} - - -// QDnsLookup::Error QDnsLookup::error() - - -static void _init_f_error_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_error_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDnsLookup *)cls)->error ())); -} - - -// QString QDnsLookup::errorString() - - -static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsLookup *)cls)->errorString ()); -} - - -// QList QDnsLookup::hostAddressRecords() - - -static void _init_f_hostAddressRecords_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_hostAddressRecords_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QDnsLookup *)cls)->hostAddressRecords ()); -} - - -// bool QDnsLookup::isFinished() - - -static void _init_f_isFinished_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isFinished_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QDnsLookup *)cls)->isFinished ()); -} - - -// void QDnsLookup::lookup() - - -static void _init_f_lookup_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_lookup_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup *)cls)->lookup (); -} - - -// QList QDnsLookup::mailExchangeRecords() - - -static void _init_f_mailExchangeRecords_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_mailExchangeRecords_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QDnsLookup *)cls)->mailExchangeRecords ()); -} - - -// QString QDnsLookup::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsLookup *)cls)->name ()); -} - - -// QList QDnsLookup::nameServerRecords() - - -static void _init_f_nameServerRecords_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_nameServerRecords_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QDnsLookup *)cls)->nameServerRecords ()); -} - - -// QHostAddress QDnsLookup::nameserver() - - -static void _init_f_nameserver_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_nameserver_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QHostAddress)((QDnsLookup *)cls)->nameserver ()); -} - - -// QList QDnsLookup::pointerRecords() - - -static void _init_f_pointerRecords_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_pointerRecords_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QDnsLookup *)cls)->pointerRecords ()); -} - - -// QList QDnsLookup::serviceRecords() - - -static void _init_f_serviceRecords_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_serviceRecords_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QDnsLookup *)cls)->serviceRecords ()); -} - - -// void QDnsLookup::setName(const QString &name) - - -static void _init_f_setName_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup *)cls)->setName (arg1); -} - - -// void QDnsLookup::setNameserver(const QHostAddress &nameserver) - - -static void _init_f_setNameserver_2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("nameserver"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setNameserver_2518 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup *)cls)->setNameserver (arg1); -} - - -// void QDnsLookup::setType(QDnsLookup::Type) - - -static void _init_f_setType_1978 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setType_1978 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// QList QDnsLookup::textRecords() - - -static void _init_f_textRecords_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_textRecords_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QDnsLookup *)cls)->textRecords ()); -} - - -// QDnsLookup::Type QDnsLookup::type() - - -static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_type_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDnsLookup *)cls)->type ())); -} - - -// static QString QDnsLookup::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QDnsLookup::tr (arg1, arg2, arg3)); -} - - -// static QString QDnsLookup::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QDnsLookup::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QDnsLookup () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QDnsLookup::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("canonicalNameRecords", "@brief Method QList QDnsLookup::canonicalNameRecords()\n", true, &_init_f_canonicalNameRecords_c0, &_call_f_canonicalNameRecords_c0); - methods += new qt_gsi::GenericMethod (":error", "@brief Method QDnsLookup::Error QDnsLookup::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); - methods += new qt_gsi::GenericMethod (":errorString", "@brief Method QString QDnsLookup::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod ("hostAddressRecords", "@brief Method QList QDnsLookup::hostAddressRecords()\n", true, &_init_f_hostAddressRecords_c0, &_call_f_hostAddressRecords_c0); - methods += new qt_gsi::GenericMethod ("isFinished?", "@brief Method bool QDnsLookup::isFinished()\n", true, &_init_f_isFinished_c0, &_call_f_isFinished_c0); - methods += new qt_gsi::GenericMethod ("lookup", "@brief Method void QDnsLookup::lookup()\n", false, &_init_f_lookup_0, &_call_f_lookup_0); - methods += new qt_gsi::GenericMethod ("mailExchangeRecords", "@brief Method QList QDnsLookup::mailExchangeRecords()\n", true, &_init_f_mailExchangeRecords_c0, &_call_f_mailExchangeRecords_c0); - methods += new qt_gsi::GenericMethod (":name", "@brief Method QString QDnsLookup::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("nameServerRecords", "@brief Method QList QDnsLookup::nameServerRecords()\n", true, &_init_f_nameServerRecords_c0, &_call_f_nameServerRecords_c0); - methods += new qt_gsi::GenericMethod (":nameserver", "@brief Method QHostAddress QDnsLookup::nameserver()\n", true, &_init_f_nameserver_c0, &_call_f_nameserver_c0); - methods += new qt_gsi::GenericMethod ("pointerRecords", "@brief Method QList QDnsLookup::pointerRecords()\n", true, &_init_f_pointerRecords_c0, &_call_f_pointerRecords_c0); - methods += new qt_gsi::GenericMethod ("serviceRecords", "@brief Method QList QDnsLookup::serviceRecords()\n", true, &_init_f_serviceRecords_c0, &_call_f_serviceRecords_c0); - methods += new qt_gsi::GenericMethod ("setName|name=", "@brief Method void QDnsLookup::setName(const QString &name)\n", false, &_init_f_setName_2025, &_call_f_setName_2025); - methods += new qt_gsi::GenericMethod ("setNameserver|nameserver=", "@brief Method void QDnsLookup::setNameserver(const QHostAddress &nameserver)\n", false, &_init_f_setNameserver_2518, &_call_f_setNameserver_2518); - methods += new qt_gsi::GenericMethod ("setType|type=", "@brief Method void QDnsLookup::setType(QDnsLookup::Type)\n", false, &_init_f_setType_1978, &_call_f_setType_1978); - methods += new qt_gsi::GenericMethod ("textRecords", "@brief Method QList QDnsLookup::textRecords()\n", true, &_init_f_textRecords_c0, &_call_f_textRecords_c0); - methods += new qt_gsi::GenericMethod (":type", "@brief Method QDnsLookup::Type QDnsLookup::type()\n", true, &_init_f_type_c0, &_call_f_type_c0); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QDnsLookup::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("finished()", "finished", "@brief Signal declaration for QDnsLookup::finished()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("nameChanged(const QString &)", "nameChanged", gsi::arg("name"), "@brief Signal declaration for QDnsLookup::nameChanged(const QString &name)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("nameserverChanged(const QHostAddress &)", "nameserverChanged", gsi::arg("nameserver"), "@brief Signal declaration for QDnsLookup::nameserverChanged(const QHostAddress &nameserver)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("typeChanged(QDnsLookup::Type)", "typeChanged", gsi::arg("type"), "@brief Signal declaration for QDnsLookup::typeChanged(QDnsLookup::Type type)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QDnsLookup::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 QDnsLookup::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QDnsLookup (qtdecl_QObject (), "QtMultimedia", "QDnsLookup_Native", - methods_QDnsLookup (), - "@hide\n@alias QDnsLookup"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QDnsLookup () { return decl_QDnsLookup; } - -} - - -class QDnsLookup_Adaptor : public QDnsLookup, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QDnsLookup_Adaptor(); - - // [adaptor ctor] QDnsLookup::QDnsLookup(QObject *parent) - QDnsLookup_Adaptor() : QDnsLookup() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QDnsLookup::QDnsLookup(QObject *parent) - QDnsLookup_Adaptor(QObject *parent) : QDnsLookup(parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QDnsLookup::QDnsLookup(QDnsLookup::Type type, const QString &name, QObject *parent) - QDnsLookup_Adaptor(QDnsLookup::Type type, const QString &name) : QDnsLookup(type, name) - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QDnsLookup::QDnsLookup(QDnsLookup::Type type, const QString &name, QObject *parent) - QDnsLookup_Adaptor(QDnsLookup::Type type, const QString &name, QObject *parent) : QDnsLookup(type, name, parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QDnsLookup::QDnsLookup(QDnsLookup::Type type, const QString &name, const QHostAddress &nameserver, QObject *parent) - QDnsLookup_Adaptor(QDnsLookup::Type type, const QString &name, const QHostAddress &nameserver) : QDnsLookup(type, name, nameserver) - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QDnsLookup::QDnsLookup(QDnsLookup::Type type, const QString &name, const QHostAddress &nameserver, QObject *parent) - QDnsLookup_Adaptor(QDnsLookup::Type type, const QString &name, const QHostAddress &nameserver, QObject *parent) : QDnsLookup(type, name, nameserver, parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] bool QDnsLookup::isSignalConnected(const QMetaMethod &signal) - bool fp_QDnsLookup_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QDnsLookup::isSignalConnected(signal); - } - - // [expose] int QDnsLookup::receivers(const char *signal) - int fp_QDnsLookup_receivers_c1731 (const char *signal) const { - return QDnsLookup::receivers(signal); - } - - // [expose] QObject *QDnsLookup::sender() - QObject * fp_QDnsLookup_sender_c0 () const { - return QDnsLookup::sender(); - } - - // [expose] int QDnsLookup::senderSignalIndex() - int fp_QDnsLookup_senderSignalIndex_c0 () const { - return QDnsLookup::senderSignalIndex(); - } - - // [emitter impl] void QDnsLookup::destroyed(QObject *) - void emitter_QDnsLookup_destroyed_1302(QObject *arg1) - { - emit QDnsLookup::destroyed(arg1); - } - - // [adaptor impl] bool QDnsLookup::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QDnsLookup::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QDnsLookup_Adaptor::cbs_event_1217_0, arg1); - } else { - return QDnsLookup::event(arg1); - } - } - - // [adaptor impl] bool QDnsLookup::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QDnsLookup::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QDnsLookup_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QDnsLookup::eventFilter(arg1, arg2); - } - } - - // [emitter impl] void QDnsLookup::finished() - void emitter_QDnsLookup_finished_0() - { - emit QDnsLookup::finished(); - } - - // [emitter impl] void QDnsLookup::nameChanged(const QString &name) - void emitter_QDnsLookup_nameChanged_2025(const QString &name) - { - emit QDnsLookup::nameChanged(name); - } - - // [emitter impl] void QDnsLookup::nameserverChanged(const QHostAddress &nameserver) - void emitter_QDnsLookup_nameserverChanged_2518(const QHostAddress &nameserver) - { - emit QDnsLookup::nameserverChanged(nameserver); - } - - // [emitter impl] void QDnsLookup::typeChanged(QDnsLookup::Type type) - void emitter_QDnsLookup_typeChanged_1978(QDnsLookup::Type type) - { - emit QDnsLookup::typeChanged(type); - } - - // [adaptor impl] void QDnsLookup::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QDnsLookup::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QDnsLookup_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QDnsLookup::childEvent(arg1); - } - } - - // [adaptor impl] void QDnsLookup::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QDnsLookup::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QDnsLookup_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QDnsLookup::customEvent(arg1); - } - } - - // [adaptor impl] void QDnsLookup::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QDnsLookup::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QDnsLookup_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QDnsLookup::disconnectNotify(signal); - } - } - - // [adaptor impl] void QDnsLookup::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QDnsLookup::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QDnsLookup_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QDnsLookup::timerEvent(arg1); - } - } - - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QDnsLookup_Adaptor::~QDnsLookup_Adaptor() { } - -// Constructor QDnsLookup::QDnsLookup(QObject *parent) (adaptor class) - -static void _init_ctor_QDnsLookup_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QDnsLookup_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QDnsLookup_Adaptor (arg1)); -} - - -// Constructor QDnsLookup::QDnsLookup(QDnsLookup::Type type, const QString &name, QObject *parent) (adaptor class) - -static void _init_ctor_QDnsLookup_Adaptor_5089 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("type"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("name"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("parent", true, "0"); - decl->add_arg (argspec_2); - decl->set_return_new (); -} - -static void _call_ctor_QDnsLookup_Adaptor_5089 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QDnsLookup_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); -} - - -// Constructor QDnsLookup::QDnsLookup(QDnsLookup::Type type, const QString &name, const QHostAddress &nameserver, QObject *parent) (adaptor class) - -static void _init_ctor_QDnsLookup_Adaptor_7499 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("type"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("name"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("nameserver"); - decl->add_arg (argspec_2); - static gsi::ArgSpecBase argspec_3 ("parent", true, "0"); - decl->add_arg (argspec_3); - decl->set_return_new (); -} - -static void _call_ctor_QDnsLookup_Adaptor_7499 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QHostAddress &arg3 = args.read (heap); - QObject *arg4 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QDnsLookup_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); -} - - -// void QDnsLookup::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QDnsLookup_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// void QDnsLookup::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QDnsLookup_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// emitter void QDnsLookup::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_destroyed_1302 (arg1); -} - - -// void QDnsLookup::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QDnsLookup_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// bool QDnsLookup::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QDnsLookup_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QDnsLookup_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QDnsLookup::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QDnsLookup_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QDnsLookup_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// emitter void QDnsLookup::finished() - -static void _init_emitter_finished_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_emitter_finished_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_finished_0 (); -} - - -// exposed bool QDnsLookup::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QDnsLookup_Adaptor *)cls)->fp_QDnsLookup_isSignalConnected_c2394 (arg1)); -} - - -// emitter void QDnsLookup::nameChanged(const QString &name) - -static void _init_emitter_nameChanged_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_nameChanged_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_nameChanged_2025 (arg1); -} - - -// emitter void QDnsLookup::nameserverChanged(const QHostAddress &nameserver) - -static void _init_emitter_nameserverChanged_2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("nameserver"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_nameserverChanged_2518 (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 (heap); - ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_nameserverChanged_2518 (arg1); -} - - -// exposed int QDnsLookup::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QDnsLookup_Adaptor *)cls)->fp_QDnsLookup_receivers_c1731 (arg1)); -} - - -// exposed QObject *QDnsLookup::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QDnsLookup_Adaptor *)cls)->fp_QDnsLookup_sender_c0 ()); -} - - -// exposed int QDnsLookup::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QDnsLookup_Adaptor *)cls)->fp_QDnsLookup_senderSignalIndex_c0 ()); -} - - -// void QDnsLookup::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsLookup_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QDnsLookup_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -// emitter void QDnsLookup::typeChanged(QDnsLookup::Type type) - -static void _init_emitter_typeChanged_1978 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("type"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_emitter_typeChanged_1978 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_typeChanged_1978 (arg1); -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QDnsLookup (); - -static gsi::Methods methods_QDnsLookup_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsLookup::QDnsLookup(QObject *parent)\nThis method creates an object of class QDnsLookup.", &_init_ctor_QDnsLookup_Adaptor_1302, &_call_ctor_QDnsLookup_Adaptor_1302); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsLookup::QDnsLookup(QDnsLookup::Type type, const QString &name, QObject *parent)\nThis method creates an object of class QDnsLookup.", &_init_ctor_QDnsLookup_Adaptor_5089, &_call_ctor_QDnsLookup_Adaptor_5089); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsLookup::QDnsLookup(QDnsLookup::Type type, const QString &name, const QHostAddress &nameserver, QObject *parent)\nThis method creates an object of class QDnsLookup.", &_init_ctor_QDnsLookup_Adaptor_7499, &_call_ctor_QDnsLookup_Adaptor_7499); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QDnsLookup::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QDnsLookup::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QDnsLookup::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QDnsLookup::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QDnsLookup::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QDnsLookup::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("emit_finished", "@brief Emitter for signal void QDnsLookup::finished()\nCall this method to emit this signal.", false, &_init_emitter_finished_0, &_call_emitter_finished_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QDnsLookup::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("emit_nameChanged", "@brief Emitter for signal void QDnsLookup::nameChanged(const QString &name)\nCall this method to emit this signal.", false, &_init_emitter_nameChanged_2025, &_call_emitter_nameChanged_2025); - methods += new qt_gsi::GenericMethod ("emit_nameserverChanged", "@brief Emitter for signal void QDnsLookup::nameserverChanged(const QHostAddress &nameserver)\nCall this method to emit this signal.", false, &_init_emitter_nameserverChanged_2518, &_call_emitter_nameserverChanged_2518); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QDnsLookup::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QDnsLookup::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QDnsLookup::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QDnsLookup::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("emit_typeChanged", "@brief Emitter for signal void QDnsLookup::typeChanged(QDnsLookup::Type type)\nCall this method to emit this signal.", false, &_init_emitter_typeChanged_1978, &_call_emitter_typeChanged_1978); - return methods; -} - -gsi::Class decl_QDnsLookup_Adaptor (qtdecl_QDnsLookup (), "QtMultimedia", "QDnsLookup", - methods_QDnsLookup_Adaptor (), - "@qt\n@brief Binding of QDnsLookup"); - -} - - -// Implementation of the enum wrapper class for QDnsLookup::Error -namespace qt_gsi -{ - -static gsi::Enum decl_QDnsLookup_Error_Enum ("QtMultimedia", "QDnsLookup_Error", - gsi::enum_const ("NoError", QDnsLookup::NoError, "@brief Enum constant QDnsLookup::NoError") + - gsi::enum_const ("ResolverError", QDnsLookup::ResolverError, "@brief Enum constant QDnsLookup::ResolverError") + - gsi::enum_const ("OperationCancelledError", QDnsLookup::OperationCancelledError, "@brief Enum constant QDnsLookup::OperationCancelledError") + - gsi::enum_const ("InvalidRequestError", QDnsLookup::InvalidRequestError, "@brief Enum constant QDnsLookup::InvalidRequestError") + - gsi::enum_const ("InvalidReplyError", QDnsLookup::InvalidReplyError, "@brief Enum constant QDnsLookup::InvalidReplyError") + - gsi::enum_const ("ServerFailureError", QDnsLookup::ServerFailureError, "@brief Enum constant QDnsLookup::ServerFailureError") + - gsi::enum_const ("ServerRefusedError", QDnsLookup::ServerRefusedError, "@brief Enum constant QDnsLookup::ServerRefusedError") + - gsi::enum_const ("NotFoundError", QDnsLookup::NotFoundError, "@brief Enum constant QDnsLookup::NotFoundError"), - "@qt\n@brief This class represents the QDnsLookup::Error enum"); - -static gsi::QFlagsClass decl_QDnsLookup_Error_Enums ("QtMultimedia", "QDnsLookup_QFlags_Error", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QDnsLookup_Error_Enum_in_parent (decl_QDnsLookup_Error_Enum.defs ()); -static gsi::ClassExt decl_QDnsLookup_Error_Enum_as_child (decl_QDnsLookup_Error_Enum, "Error"); -static gsi::ClassExt decl_QDnsLookup_Error_Enums_as_child (decl_QDnsLookup_Error_Enums, "QFlags_Error"); - -} - - -// Implementation of the enum wrapper class for QDnsLookup::Type -namespace qt_gsi -{ - -static gsi::Enum decl_QDnsLookup_Type_Enum ("QtMultimedia", "QDnsLookup_Type", - gsi::enum_const ("A", QDnsLookup::A, "@brief Enum constant QDnsLookup::A") + - gsi::enum_const ("AAAA", QDnsLookup::AAAA, "@brief Enum constant QDnsLookup::AAAA") + - gsi::enum_const ("ANY", QDnsLookup::ANY, "@brief Enum constant QDnsLookup::ANY") + - gsi::enum_const ("CNAME", QDnsLookup::CNAME, "@brief Enum constant QDnsLookup::CNAME") + - gsi::enum_const ("MX", QDnsLookup::MX, "@brief Enum constant QDnsLookup::MX") + - gsi::enum_const ("NS", QDnsLookup::NS, "@brief Enum constant QDnsLookup::NS") + - gsi::enum_const ("PTR", QDnsLookup::PTR, "@brief Enum constant QDnsLookup::PTR") + - gsi::enum_const ("SRV", QDnsLookup::SRV, "@brief Enum constant QDnsLookup::SRV") + - gsi::enum_const ("TXT", QDnsLookup::TXT, "@brief Enum constant QDnsLookup::TXT"), - "@qt\n@brief This class represents the QDnsLookup::Type enum"); - -static gsi::QFlagsClass decl_QDnsLookup_Type_Enums ("QtMultimedia", "QDnsLookup_QFlags_Type", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QDnsLookup_Type_Enum_in_parent (decl_QDnsLookup_Type_Enum.defs ()); -static gsi::ClassExt decl_QDnsLookup_Type_Enum_as_child (decl_QDnsLookup_Type_Enum, "Type"); -static gsi::ClassExt decl_QDnsLookup_Type_Enums_as_child (decl_QDnsLookup_Type_Enums, "QFlags_Type"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsMailExchangeRecord.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsMailExchangeRecord.cc deleted file mode 100644 index ebfc7ed9a..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsMailExchangeRecord.cc +++ /dev/null @@ -1,197 +0,0 @@ - -/* - - 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 gsiDeclQDnsMailExchangeRecord.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QDnsMailExchangeRecord - -// Constructor QDnsMailExchangeRecord::QDnsMailExchangeRecord() - - -static void _init_ctor_QDnsMailExchangeRecord_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QDnsMailExchangeRecord_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QDnsMailExchangeRecord ()); -} - - -// Constructor QDnsMailExchangeRecord::QDnsMailExchangeRecord(const QDnsMailExchangeRecord &other) - - -static void _init_ctor_QDnsMailExchangeRecord_3484 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QDnsMailExchangeRecord_3484 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsMailExchangeRecord &arg1 = args.read (heap); - ret.write (new QDnsMailExchangeRecord (arg1)); -} - - -// QString QDnsMailExchangeRecord::exchange() - - -static void _init_f_exchange_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_exchange_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsMailExchangeRecord *)cls)->exchange ()); -} - - -// QString QDnsMailExchangeRecord::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsMailExchangeRecord *)cls)->name ()); -} - - -// QDnsMailExchangeRecord &QDnsMailExchangeRecord::operator=(const QDnsMailExchangeRecord &other) - - -static void _init_f_operator_eq__3484 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3484 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsMailExchangeRecord &arg1 = args.read (heap); - ret.write ((QDnsMailExchangeRecord &)((QDnsMailExchangeRecord *)cls)->operator= (arg1)); -} - - -// quint16 QDnsMailExchangeRecord::preference() - - -static void _init_f_preference_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_preference_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint16)((QDnsMailExchangeRecord *)cls)->preference ()); -} - - -// void QDnsMailExchangeRecord::swap(QDnsMailExchangeRecord &other) - - -static void _init_f_swap_2789 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2789 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QDnsMailExchangeRecord &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsMailExchangeRecord *)cls)->swap (arg1); -} - - -// quint32 QDnsMailExchangeRecord::timeToLive() - - -static void _init_f_timeToLive_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_timeToLive_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint32)((QDnsMailExchangeRecord *)cls)->timeToLive ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QDnsMailExchangeRecord () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsMailExchangeRecord::QDnsMailExchangeRecord()\nThis method creates an object of class QDnsMailExchangeRecord.", &_init_ctor_QDnsMailExchangeRecord_0, &_call_ctor_QDnsMailExchangeRecord_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsMailExchangeRecord::QDnsMailExchangeRecord(const QDnsMailExchangeRecord &other)\nThis method creates an object of class QDnsMailExchangeRecord.", &_init_ctor_QDnsMailExchangeRecord_3484, &_call_ctor_QDnsMailExchangeRecord_3484); - methods += new qt_gsi::GenericMethod ("exchange", "@brief Method QString QDnsMailExchangeRecord::exchange()\n", true, &_init_f_exchange_c0, &_call_f_exchange_c0); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDnsMailExchangeRecord::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDnsMailExchangeRecord &QDnsMailExchangeRecord::operator=(const QDnsMailExchangeRecord &other)\n", false, &_init_f_operator_eq__3484, &_call_f_operator_eq__3484); - methods += new qt_gsi::GenericMethod ("preference", "@brief Method quint16 QDnsMailExchangeRecord::preference()\n", true, &_init_f_preference_c0, &_call_f_preference_c0); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QDnsMailExchangeRecord::swap(QDnsMailExchangeRecord &other)\n", false, &_init_f_swap_2789, &_call_f_swap_2789); - methods += new qt_gsi::GenericMethod ("timeToLive", "@brief Method quint32 QDnsMailExchangeRecord::timeToLive()\n", true, &_init_f_timeToLive_c0, &_call_f_timeToLive_c0); - return methods; -} - -gsi::Class decl_QDnsMailExchangeRecord ("QtMultimedia", "QDnsMailExchangeRecord", - methods_QDnsMailExchangeRecord (), - "@qt\n@brief Binding of QDnsMailExchangeRecord"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QDnsMailExchangeRecord () { return decl_QDnsMailExchangeRecord; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsServiceRecord.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsServiceRecord.cc deleted file mode 100644 index 1706ecce5..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsServiceRecord.cc +++ /dev/null @@ -1,229 +0,0 @@ - -/* - - 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 gsiDeclQDnsServiceRecord.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QDnsServiceRecord - -// Constructor QDnsServiceRecord::QDnsServiceRecord() - - -static void _init_ctor_QDnsServiceRecord_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QDnsServiceRecord_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QDnsServiceRecord ()); -} - - -// Constructor QDnsServiceRecord::QDnsServiceRecord(const QDnsServiceRecord &other) - - -static void _init_ctor_QDnsServiceRecord_3015 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QDnsServiceRecord_3015 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsServiceRecord &arg1 = args.read (heap); - ret.write (new QDnsServiceRecord (arg1)); -} - - -// QString QDnsServiceRecord::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsServiceRecord *)cls)->name ()); -} - - -// QDnsServiceRecord &QDnsServiceRecord::operator=(const QDnsServiceRecord &other) - - -static void _init_f_operator_eq__3015 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3015 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsServiceRecord &arg1 = args.read (heap); - ret.write ((QDnsServiceRecord &)((QDnsServiceRecord *)cls)->operator= (arg1)); -} - - -// quint16 QDnsServiceRecord::port() - - -static void _init_f_port_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_port_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint16)((QDnsServiceRecord *)cls)->port ()); -} - - -// quint16 QDnsServiceRecord::priority() - - -static void _init_f_priority_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_priority_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint16)((QDnsServiceRecord *)cls)->priority ()); -} - - -// void QDnsServiceRecord::swap(QDnsServiceRecord &other) - - -static void _init_f_swap_2320 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2320 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QDnsServiceRecord &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsServiceRecord *)cls)->swap (arg1); -} - - -// QString QDnsServiceRecord::target() - - -static void _init_f_target_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_target_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsServiceRecord *)cls)->target ()); -} - - -// quint32 QDnsServiceRecord::timeToLive() - - -static void _init_f_timeToLive_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_timeToLive_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint32)((QDnsServiceRecord *)cls)->timeToLive ()); -} - - -// quint16 QDnsServiceRecord::weight() - - -static void _init_f_weight_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_weight_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint16)((QDnsServiceRecord *)cls)->weight ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QDnsServiceRecord () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsServiceRecord::QDnsServiceRecord()\nThis method creates an object of class QDnsServiceRecord.", &_init_ctor_QDnsServiceRecord_0, &_call_ctor_QDnsServiceRecord_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsServiceRecord::QDnsServiceRecord(const QDnsServiceRecord &other)\nThis method creates an object of class QDnsServiceRecord.", &_init_ctor_QDnsServiceRecord_3015, &_call_ctor_QDnsServiceRecord_3015); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDnsServiceRecord::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDnsServiceRecord &QDnsServiceRecord::operator=(const QDnsServiceRecord &other)\n", false, &_init_f_operator_eq__3015, &_call_f_operator_eq__3015); - methods += new qt_gsi::GenericMethod ("port", "@brief Method quint16 QDnsServiceRecord::port()\n", true, &_init_f_port_c0, &_call_f_port_c0); - methods += new qt_gsi::GenericMethod ("priority", "@brief Method quint16 QDnsServiceRecord::priority()\n", true, &_init_f_priority_c0, &_call_f_priority_c0); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QDnsServiceRecord::swap(QDnsServiceRecord &other)\n", false, &_init_f_swap_2320, &_call_f_swap_2320); - methods += new qt_gsi::GenericMethod ("target", "@brief Method QString QDnsServiceRecord::target()\n", true, &_init_f_target_c0, &_call_f_target_c0); - methods += new qt_gsi::GenericMethod ("timeToLive", "@brief Method quint32 QDnsServiceRecord::timeToLive()\n", true, &_init_f_timeToLive_c0, &_call_f_timeToLive_c0); - methods += new qt_gsi::GenericMethod ("weight", "@brief Method quint16 QDnsServiceRecord::weight()\n", true, &_init_f_weight_c0, &_call_f_weight_c0); - return methods; -} - -gsi::Class decl_QDnsServiceRecord ("QtMultimedia", "QDnsServiceRecord", - methods_QDnsServiceRecord (), - "@qt\n@brief Binding of QDnsServiceRecord"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QDnsServiceRecord () { return decl_QDnsServiceRecord; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsTextRecord.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsTextRecord.cc deleted file mode 100644 index 4d0e67449..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQDnsTextRecord.cc +++ /dev/null @@ -1,181 +0,0 @@ - -/* - - 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 gsiDeclQDnsTextRecord.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QDnsTextRecord - -// Constructor QDnsTextRecord::QDnsTextRecord() - - -static void _init_ctor_QDnsTextRecord_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QDnsTextRecord_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QDnsTextRecord ()); -} - - -// Constructor QDnsTextRecord::QDnsTextRecord(const QDnsTextRecord &other) - - -static void _init_ctor_QDnsTextRecord_2715 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QDnsTextRecord_2715 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsTextRecord &arg1 = args.read (heap); - ret.write (new QDnsTextRecord (arg1)); -} - - -// QString QDnsTextRecord::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QDnsTextRecord *)cls)->name ()); -} - - -// QDnsTextRecord &QDnsTextRecord::operator=(const QDnsTextRecord &other) - - -static void _init_f_operator_eq__2715 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2715 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDnsTextRecord &arg1 = args.read (heap); - ret.write ((QDnsTextRecord &)((QDnsTextRecord *)cls)->operator= (arg1)); -} - - -// void QDnsTextRecord::swap(QDnsTextRecord &other) - - -static void _init_f_swap_2020 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2020 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QDnsTextRecord &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QDnsTextRecord *)cls)->swap (arg1); -} - - -// quint32 QDnsTextRecord::timeToLive() - - -static void _init_f_timeToLive_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_timeToLive_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint32)((QDnsTextRecord *)cls)->timeToLive ()); -} - - -// QList QDnsTextRecord::values() - - -static void _init_f_values_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_values_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QDnsTextRecord *)cls)->values ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QDnsTextRecord () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsTextRecord::QDnsTextRecord()\nThis method creates an object of class QDnsTextRecord.", &_init_ctor_QDnsTextRecord_0, &_call_ctor_QDnsTextRecord_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QDnsTextRecord::QDnsTextRecord(const QDnsTextRecord &other)\nThis method creates an object of class QDnsTextRecord.", &_init_ctor_QDnsTextRecord_2715, &_call_ctor_QDnsTextRecord_2715); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QDnsTextRecord::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QDnsTextRecord &QDnsTextRecord::operator=(const QDnsTextRecord &other)\n", false, &_init_f_operator_eq__2715, &_call_f_operator_eq__2715); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QDnsTextRecord::swap(QDnsTextRecord &other)\n", false, &_init_f_swap_2020, &_call_f_swap_2020); - methods += new qt_gsi::GenericMethod ("timeToLive", "@brief Method quint32 QDnsTextRecord::timeToLive()\n", true, &_init_f_timeToLive_c0, &_call_f_timeToLive_c0); - methods += new qt_gsi::GenericMethod ("values", "@brief Method QList QDnsTextRecord::values()\n", true, &_init_f_values_c0, &_call_f_values_c0); - return methods; -} - -gsi::Class decl_QDnsTextRecord ("QtMultimedia", "QDnsTextRecord", - methods_QDnsTextRecord (), - "@qt\n@brief Binding of QDnsTextRecord"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QDnsTextRecord () { return decl_QDnsTextRecord; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc index 800237214..4ecee9b78 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc @@ -64,7 +64,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQHostAddress.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQHostAddress.cc deleted file mode 100644 index 23982bd5d..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQHostAddress.cc +++ /dev/null @@ -1,596 +0,0 @@ - -/* - - 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 gsiDeclQHostAddress.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QHostAddress - -// Constructor QHostAddress::QHostAddress() - - -static void _init_ctor_QHostAddress_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QHostAddress_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QHostAddress ()); -} - - -// Constructor QHostAddress::QHostAddress(quint32 ip4Addr) - - -static void _init_ctor_QHostAddress_1098 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ip4Addr"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHostAddress_1098 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - quint32 arg1 = args.read (heap); - ret.write (new QHostAddress (arg1)); -} - - -// Constructor QHostAddress::QHostAddress(const quint8 *ip6Addr) - - -static void _init_ctor_QHostAddress_1934 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ip6Addr"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHostAddress_1934 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const quint8 *arg1 = args.read (heap); - ret.write (new QHostAddress (arg1)); -} - - -// Constructor QHostAddress::QHostAddress(const QString &address) - - -static void _init_ctor_QHostAddress_2025 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHostAddress_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write (new QHostAddress (arg1)); -} - - -// Constructor QHostAddress::QHostAddress(const QHostAddress ©) - - -static void _init_ctor_QHostAddress_2518 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("copy"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHostAddress_2518 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - ret.write (new QHostAddress (arg1)); -} - - -// Constructor QHostAddress::QHostAddress(QHostAddress::SpecialAddress address) - - -static void _init_ctor_QHostAddress_3172 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHostAddress_3172 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write (new QHostAddress (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// void QHostAddress::clear() - - -static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostAddress *)cls)->clear (); -} - - -// bool QHostAddress::isInSubnet(const QHostAddress &subnet, int netmask) - - -static void _init_f_isInSubnet_c3177 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("subnet"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("netmask"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_isInSubnet_c3177 (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 (heap); - int arg2 = args.read (heap); - ret.write ((bool)((QHostAddress *)cls)->isInSubnet (arg1, arg2)); -} - - -// bool QHostAddress::isInSubnet(const QPair &subnet) - - -static void _init_f_isInSubnet_c3636 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("subnet"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_isInSubnet_c3636 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QPair &arg1 = args.read & > (heap); - ret.write ((bool)((QHostAddress *)cls)->isInSubnet (arg1)); -} - - -// bool QHostAddress::isLoopback() - - -static void _init_f_isLoopback_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isLoopback_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QHostAddress *)cls)->isLoopback ()); -} - - -// bool QHostAddress::isNull() - - -static void _init_f_isNull_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isNull_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QHostAddress *)cls)->isNull ()); -} - - -// bool QHostAddress::operator !=(const QHostAddress &address) - - -static void _init_f_operator_excl__eq__c2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2518 (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 (heap); - ret.write ((bool)((QHostAddress *)cls)->operator != (arg1)); -} - - -// bool QHostAddress::operator !=(QHostAddress::SpecialAddress address) - - -static void _init_f_operator_excl__eq__c3172 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c3172 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((bool)((QHostAddress *)cls)->operator != (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// bool QHostAddress::operator ==(const QHostAddress &address) - - -static void _init_f_operator_eq__eq__c2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2518 (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 (heap); - ret.write ((bool)((QHostAddress *)cls)->operator == (arg1)); -} - - -// bool QHostAddress::operator ==(QHostAddress::SpecialAddress address) - - -static void _init_f_operator_eq__eq__c3172 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c3172 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((bool)((QHostAddress *)cls)->operator == (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// QHostAddress &QHostAddress::operator=(const QHostAddress &other) - - -static void _init_f_operator_eq__2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2518 (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 (heap); - ret.write ((QHostAddress &)((QHostAddress *)cls)->operator= (arg1)); -} - - -// QHostAddress &QHostAddress::operator=(const QString &address) - - -static void _init_f_operator_eq__2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QHostAddress &)((QHostAddress *)cls)->operator= (arg1)); -} - - -// QAbstractSocket::NetworkLayerProtocol QHostAddress::protocol() - - -static void _init_f_protocol_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_protocol_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QHostAddress *)cls)->protocol ())); -} - - -// QString QHostAddress::scopeId() - - -static void _init_f_scopeId_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_scopeId_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QHostAddress *)cls)->scopeId ()); -} - - -// void QHostAddress::setAddress(quint32 ip4Addr) - - -static void _init_f_setAddress_1098 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ip4Addr"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setAddress_1098 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - quint32 arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostAddress *)cls)->setAddress (arg1); -} - - -// void QHostAddress::setAddress(const quint8 *ip6Addr) - - -static void _init_f_setAddress_1934 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ip6Addr"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setAddress_1934 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const quint8 *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostAddress *)cls)->setAddress (arg1); -} - - -// bool QHostAddress::setAddress(const QString &address) - - -static void _init_f_setAddress_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setAddress_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((bool)((QHostAddress *)cls)->setAddress (arg1)); -} - - -// void QHostAddress::setScopeId(const QString &id) - - -static void _init_f_setScopeId_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("id"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setScopeId_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostAddress *)cls)->setScopeId (arg1); -} - - -// quint32 QHostAddress::toIPv4Address() - - -static void _init_f_toIPv4Address_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_toIPv4Address_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint32)((QHostAddress *)cls)->toIPv4Address ()); -} - - -// quint32 QHostAddress::toIPv4Address(bool *ok) - - -static void _init_f_toIPv4Address_c1050 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ok"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_toIPv4Address_c1050 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - bool *arg1 = args.read (heap); - ret.write ((quint32)((QHostAddress *)cls)->toIPv4Address (arg1)); -} - - -// QString QHostAddress::toString() - - -static void _init_f_toString_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_toString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QHostAddress *)cls)->toString ()); -} - - -// static QPair QHostAddress::parseSubnet(const QString &subnet) - - -static void _init_f_parseSubnet_2025 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("subnet"); - decl->add_arg (argspec_0); - decl->set_return > (); -} - -static void _call_f_parseSubnet_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write > ((QPair)QHostAddress::parseSubnet (arg1)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QHostAddress () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHostAddress::QHostAddress()\nThis method creates an object of class QHostAddress.", &_init_ctor_QHostAddress_0, &_call_ctor_QHostAddress_0); - methods += new qt_gsi::GenericStaticMethod ("new_ip4", "@brief Constructor QHostAddress::QHostAddress(quint32 ip4Addr)\nThis method creates an object of class QHostAddress.", &_init_ctor_QHostAddress_1098, &_call_ctor_QHostAddress_1098); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHostAddress::QHostAddress(const quint8 *ip6Addr)\nThis method creates an object of class QHostAddress.", &_init_ctor_QHostAddress_1934, &_call_ctor_QHostAddress_1934); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHostAddress::QHostAddress(const QString &address)\nThis method creates an object of class QHostAddress.", &_init_ctor_QHostAddress_2025, &_call_ctor_QHostAddress_2025); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHostAddress::QHostAddress(const QHostAddress ©)\nThis method creates an object of class QHostAddress.", &_init_ctor_QHostAddress_2518, &_call_ctor_QHostAddress_2518); - methods += new qt_gsi::GenericStaticMethod ("new_special", "@brief Constructor QHostAddress::QHostAddress(QHostAddress::SpecialAddress address)\nThis method creates an object of class QHostAddress.", &_init_ctor_QHostAddress_3172, &_call_ctor_QHostAddress_3172); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QHostAddress::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("isInSubnet?", "@brief Method bool QHostAddress::isInSubnet(const QHostAddress &subnet, int netmask)\n", true, &_init_f_isInSubnet_c3177, &_call_f_isInSubnet_c3177); - methods += new qt_gsi::GenericMethod ("isInSubnet?", "@brief Method bool QHostAddress::isInSubnet(const QPair &subnet)\n", true, &_init_f_isInSubnet_c3636, &_call_f_isInSubnet_c3636); - methods += new qt_gsi::GenericMethod ("isLoopback?", "@brief Method bool QHostAddress::isLoopback()\n", true, &_init_f_isLoopback_c0, &_call_f_isLoopback_c0); - methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QHostAddress::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QHostAddress::operator !=(const QHostAddress &address)\n", true, &_init_f_operator_excl__eq__c2518, &_call_f_operator_excl__eq__c2518); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QHostAddress::operator !=(QHostAddress::SpecialAddress address)\n", true, &_init_f_operator_excl__eq__c3172, &_call_f_operator_excl__eq__c3172); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QHostAddress::operator ==(const QHostAddress &address)\n", true, &_init_f_operator_eq__eq__c2518, &_call_f_operator_eq__eq__c2518); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QHostAddress::operator ==(QHostAddress::SpecialAddress address)\n", true, &_init_f_operator_eq__eq__c3172, &_call_f_operator_eq__eq__c3172); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QHostAddress &QHostAddress::operator=(const QHostAddress &other)\n", false, &_init_f_operator_eq__2518, &_call_f_operator_eq__2518); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QHostAddress &QHostAddress::operator=(const QString &address)\n", false, &_init_f_operator_eq__2025, &_call_f_operator_eq__2025); - methods += new qt_gsi::GenericMethod ("protocol", "@brief Method QAbstractSocket::NetworkLayerProtocol QHostAddress::protocol()\n", true, &_init_f_protocol_c0, &_call_f_protocol_c0); - methods += new qt_gsi::GenericMethod (":scopeId", "@brief Method QString QHostAddress::scopeId()\n", true, &_init_f_scopeId_c0, &_call_f_scopeId_c0); - methods += new qt_gsi::GenericMethod ("setAddress", "@brief Method void QHostAddress::setAddress(quint32 ip4Addr)\n", false, &_init_f_setAddress_1098, &_call_f_setAddress_1098); - methods += new qt_gsi::GenericMethod ("setAddress", "@brief Method void QHostAddress::setAddress(const quint8 *ip6Addr)\n", false, &_init_f_setAddress_1934, &_call_f_setAddress_1934); - methods += new qt_gsi::GenericMethod ("setAddress", "@brief Method bool QHostAddress::setAddress(const QString &address)\n", false, &_init_f_setAddress_2025, &_call_f_setAddress_2025); - methods += new qt_gsi::GenericMethod ("setScopeId|scopeId=", "@brief Method void QHostAddress::setScopeId(const QString &id)\n", false, &_init_f_setScopeId_2025, &_call_f_setScopeId_2025); - methods += new qt_gsi::GenericMethod ("toIPv4Address", "@brief Method quint32 QHostAddress::toIPv4Address()\n", true, &_init_f_toIPv4Address_c0, &_call_f_toIPv4Address_c0); - methods += new qt_gsi::GenericMethod ("toIPv4Address", "@brief Method quint32 QHostAddress::toIPv4Address(bool *ok)\n", true, &_init_f_toIPv4Address_c1050, &_call_f_toIPv4Address_c1050); - methods += new qt_gsi::GenericMethod ("toString|to_s", "@brief Method QString QHostAddress::toString()\n", true, &_init_f_toString_c0, &_call_f_toString_c0); - methods += new qt_gsi::GenericStaticMethod ("parseSubnet", "@brief Static method QPair QHostAddress::parseSubnet(const QString &subnet)\nThis method is static and can be called without an instance.", &_init_f_parseSubnet_2025, &_call_f_parseSubnet_2025); - return methods; -} - -gsi::Class decl_QHostAddress ("QtMultimedia", "QHostAddress", - methods_QHostAddress (), - "@qt\n@brief Binding of QHostAddress"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QHostAddress () { return decl_QHostAddress; } - -} - - -// Implementation of the enum wrapper class for QHostAddress::SpecialAddress -namespace qt_gsi -{ - -static gsi::Enum decl_QHostAddress_SpecialAddress_Enum ("QtMultimedia", "QHostAddress_SpecialAddress", - gsi::enum_const ("Null", QHostAddress::Null, "@brief Enum constant QHostAddress::Null") + - gsi::enum_const ("Broadcast", QHostAddress::Broadcast, "@brief Enum constant QHostAddress::Broadcast") + - gsi::enum_const ("LocalHost", QHostAddress::LocalHost, "@brief Enum constant QHostAddress::LocalHost") + - gsi::enum_const ("LocalHostIPv6", QHostAddress::LocalHostIPv6, "@brief Enum constant QHostAddress::LocalHostIPv6") + - gsi::enum_const ("Any", QHostAddress::Any, "@brief Enum constant QHostAddress::Any") + - gsi::enum_const ("AnyIPv6", QHostAddress::AnyIPv6, "@brief Enum constant QHostAddress::AnyIPv6") + - gsi::enum_const ("AnyIPv4", QHostAddress::AnyIPv4, "@brief Enum constant QHostAddress::AnyIPv4"), - "@qt\n@brief This class represents the QHostAddress::SpecialAddress enum"); - -static gsi::QFlagsClass decl_QHostAddress_SpecialAddress_Enums ("QtMultimedia", "QHostAddress_QFlags_SpecialAddress", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QHostAddress_SpecialAddress_Enum_in_parent (decl_QHostAddress_SpecialAddress_Enum.defs ()); -static gsi::ClassExt decl_QHostAddress_SpecialAddress_Enum_as_child (decl_QHostAddress_SpecialAddress_Enum, "SpecialAddress"); -static gsi::ClassExt decl_QHostAddress_SpecialAddress_Enums_as_child (decl_QHostAddress_SpecialAddress_Enums, "QFlags_SpecialAddress"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQHostInfo.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQHostInfo.cc deleted file mode 100644 index 72bbfb546..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQHostInfo.cc +++ /dev/null @@ -1,423 +0,0 @@ - -/* - - 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 gsiDeclQHostInfo.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QHostInfo - -// Constructor QHostInfo::QHostInfo(int lookupId) - - -static void _init_ctor_QHostInfo_767 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("lookupId", true, "-1"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHostInfo_767 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); - ret.write (new QHostInfo (arg1)); -} - - -// Constructor QHostInfo::QHostInfo(const QHostInfo &d) - - -static void _init_ctor_QHostInfo_2204 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("d"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHostInfo_2204 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QHostInfo &arg1 = args.read (heap); - ret.write (new QHostInfo (arg1)); -} - - -// QList QHostInfo::addresses() - - -static void _init_f_addresses_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_addresses_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QHostInfo *)cls)->addresses ()); -} - - -// QHostInfo::HostInfoError QHostInfo::error() - - -static void _init_f_error_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_error_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QHostInfo *)cls)->error ())); -} - - -// QString QHostInfo::errorString() - - -static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QHostInfo *)cls)->errorString ()); -} - - -// QString QHostInfo::hostName() - - -static void _init_f_hostName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_hostName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QHostInfo *)cls)->hostName ()); -} - - -// int QHostInfo::lookupId() - - -static void _init_f_lookupId_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_lookupId_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QHostInfo *)cls)->lookupId ()); -} - - -// QHostInfo &QHostInfo::operator=(const QHostInfo &d) - - -static void _init_f_operator_eq__2204 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("d"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2204 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QHostInfo &arg1 = args.read (heap); - ret.write ((QHostInfo &)((QHostInfo *)cls)->operator= (arg1)); -} - - -// void QHostInfo::setAddresses(const QList &addresses) - - -static void _init_f_setAddresses_3133 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("addresses"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setAddresses_3133 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostInfo *)cls)->setAddresses (arg1); -} - - -// void QHostInfo::setError(QHostInfo::HostInfoError error) - - -static void _init_f_setError_2775 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("error"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setError_2775 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostInfo *)cls)->setError (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// void QHostInfo::setErrorString(const QString &errorString) - - -static void _init_f_setErrorString_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("errorString"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setErrorString_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostInfo *)cls)->setErrorString (arg1); -} - - -// void QHostInfo::setHostName(const QString &name) - - -static void _init_f_setHostName_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostInfo *)cls)->setHostName (arg1); -} - - -// void QHostInfo::setLookupId(int id) - - -static void _init_f_setLookupId_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("id"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setLookupId_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHostInfo *)cls)->setLookupId (arg1); -} - - -// static void QHostInfo::abortHostLookup(int lookupId) - - -static void _init_f_abortHostLookup_767 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("lookupId"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_abortHostLookup_767 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QHostInfo::abortHostLookup (arg1); -} - - -// static QHostInfo QHostInfo::fromName(const QString &name) - - -static void _init_f_fromName_2025 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_fromName_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QHostInfo)QHostInfo::fromName (arg1)); -} - - -// static QString QHostInfo::localDomainName() - - -static void _init_f_localDomainName_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_localDomainName_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)QHostInfo::localDomainName ()); -} - - -// static QString QHostInfo::localHostName() - - -static void _init_f_localHostName_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_localHostName_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)QHostInfo::localHostName ()); -} - - -// static int QHostInfo::lookupHost(const QString &name, QObject *receiver, const char *member) - - -static void _init_f_lookupHost_4842 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("receiver"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("member"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -static void _call_f_lookupHost_4842 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - ret.write ((int)QHostInfo::lookupHost (arg1, arg2, arg3)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QHostInfo () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHostInfo::QHostInfo(int lookupId)\nThis method creates an object of class QHostInfo.", &_init_ctor_QHostInfo_767, &_call_ctor_QHostInfo_767); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHostInfo::QHostInfo(const QHostInfo &d)\nThis method creates an object of class QHostInfo.", &_init_ctor_QHostInfo_2204, &_call_ctor_QHostInfo_2204); - methods += new qt_gsi::GenericMethod (":addresses", "@brief Method QList QHostInfo::addresses()\n", true, &_init_f_addresses_c0, &_call_f_addresses_c0); - methods += new qt_gsi::GenericMethod (":error", "@brief Method QHostInfo::HostInfoError QHostInfo::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); - methods += new qt_gsi::GenericMethod (":errorString", "@brief Method QString QHostInfo::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod (":hostName", "@brief Method QString QHostInfo::hostName()\n", true, &_init_f_hostName_c0, &_call_f_hostName_c0); - methods += new qt_gsi::GenericMethod (":lookupId", "@brief Method int QHostInfo::lookupId()\n", true, &_init_f_lookupId_c0, &_call_f_lookupId_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QHostInfo &QHostInfo::operator=(const QHostInfo &d)\n", false, &_init_f_operator_eq__2204, &_call_f_operator_eq__2204); - methods += new qt_gsi::GenericMethod ("setAddresses|addresses=", "@brief Method void QHostInfo::setAddresses(const QList &addresses)\n", false, &_init_f_setAddresses_3133, &_call_f_setAddresses_3133); - methods += new qt_gsi::GenericMethod ("setError|error=", "@brief Method void QHostInfo::setError(QHostInfo::HostInfoError error)\n", false, &_init_f_setError_2775, &_call_f_setError_2775); - methods += new qt_gsi::GenericMethod ("setErrorString|errorString=", "@brief Method void QHostInfo::setErrorString(const QString &errorString)\n", false, &_init_f_setErrorString_2025, &_call_f_setErrorString_2025); - methods += new qt_gsi::GenericMethod ("setHostName|hostName=", "@brief Method void QHostInfo::setHostName(const QString &name)\n", false, &_init_f_setHostName_2025, &_call_f_setHostName_2025); - methods += new qt_gsi::GenericMethod ("setLookupId|lookupId=", "@brief Method void QHostInfo::setLookupId(int id)\n", false, &_init_f_setLookupId_767, &_call_f_setLookupId_767); - methods += new qt_gsi::GenericStaticMethod ("abortHostLookup", "@brief Static method void QHostInfo::abortHostLookup(int lookupId)\nThis method is static and can be called without an instance.", &_init_f_abortHostLookup_767, &_call_f_abortHostLookup_767); - methods += new qt_gsi::GenericStaticMethod ("fromName", "@brief Static method QHostInfo QHostInfo::fromName(const QString &name)\nThis method is static and can be called without an instance.", &_init_f_fromName_2025, &_call_f_fromName_2025); - methods += new qt_gsi::GenericStaticMethod ("localDomainName", "@brief Static method QString QHostInfo::localDomainName()\nThis method is static and can be called without an instance.", &_init_f_localDomainName_0, &_call_f_localDomainName_0); - methods += new qt_gsi::GenericStaticMethod ("localHostName", "@brief Static method QString QHostInfo::localHostName()\nThis method is static and can be called without an instance.", &_init_f_localHostName_0, &_call_f_localHostName_0); - methods += new qt_gsi::GenericStaticMethod ("lookupHost", "@brief Static method int QHostInfo::lookupHost(const QString &name, QObject *receiver, const char *member)\nThis method is static and can be called without an instance.", &_init_f_lookupHost_4842, &_call_f_lookupHost_4842); - return methods; -} - -gsi::Class decl_QHostInfo ("QtMultimedia", "QHostInfo", - methods_QHostInfo (), - "@qt\n@brief Binding of QHostInfo"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QHostInfo () { return decl_QHostInfo; } - -} - - -// Implementation of the enum wrapper class for QHostInfo::HostInfoError -namespace qt_gsi -{ - -static gsi::Enum decl_QHostInfo_HostInfoError_Enum ("QtMultimedia", "QHostInfo_HostInfoError", - gsi::enum_const ("NoError", QHostInfo::NoError, "@brief Enum constant QHostInfo::NoError") + - gsi::enum_const ("HostNotFound", QHostInfo::HostNotFound, "@brief Enum constant QHostInfo::HostNotFound") + - gsi::enum_const ("UnknownError", QHostInfo::UnknownError, "@brief Enum constant QHostInfo::UnknownError"), - "@qt\n@brief This class represents the QHostInfo::HostInfoError enum"); - -static gsi::QFlagsClass decl_QHostInfo_HostInfoError_Enums ("QtMultimedia", "QHostInfo_QFlags_HostInfoError", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QHostInfo_HostInfoError_Enum_in_parent (decl_QHostInfo_HostInfoError_Enum.defs ()); -static gsi::ClassExt decl_QHostInfo_HostInfoError_Enum_as_child (decl_QHostInfo_HostInfoError_Enum, "HostInfoError"); -static gsi::ClassExt decl_QHostInfo_HostInfoError_Enums_as_child (decl_QHostInfo_HostInfoError_Enums, "QFlags_HostInfoError"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQHttpMultiPart.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQHttpMultiPart.cc deleted file mode 100644 index 4319bbda1..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQHttpMultiPart.cc +++ /dev/null @@ -1,689 +0,0 @@ - -/* - - 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 gsiDeclQHttpMultiPart.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QHttpMultiPart - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QHttpMultiPart::staticMetaObject); -} - - -// void QHttpMultiPart::append(const QHttpPart &httpPart) - - -static void _init_f_append_2217 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("httpPart"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_append_2217 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpMultiPart *)cls)->append (arg1); -} - - -// QByteArray QHttpMultiPart::boundary() - - -static void _init_f_boundary_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_boundary_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QHttpMultiPart *)cls)->boundary ()); -} - - -// void QHttpMultiPart::setBoundary(const QByteArray &boundary) - - -static void _init_f_setBoundary_2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("boundary"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setBoundary_2309 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpMultiPart *)cls)->setBoundary (arg1); -} - - -// void QHttpMultiPart::setContentType(QHttpMultiPart::ContentType contentType) - - -static void _init_f_setContentType_3128 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("contentType"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setContentType_3128 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpMultiPart *)cls)->setContentType (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// static QString QHttpMultiPart::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QHttpMultiPart::tr (arg1, arg2, arg3)); -} - - -// static QString QHttpMultiPart::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QHttpMultiPart::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QHttpMultiPart () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("append", "@brief Method void QHttpMultiPart::append(const QHttpPart &httpPart)\n", false, &_init_f_append_2217, &_call_f_append_2217); - methods += new qt_gsi::GenericMethod (":boundary", "@brief Method QByteArray QHttpMultiPart::boundary()\n", true, &_init_f_boundary_c0, &_call_f_boundary_c0); - methods += new qt_gsi::GenericMethod ("setBoundary|boundary=", "@brief Method void QHttpMultiPart::setBoundary(const QByteArray &boundary)\n", false, &_init_f_setBoundary_2309, &_call_f_setBoundary_2309); - methods += new qt_gsi::GenericMethod ("setContentType", "@brief Method void QHttpMultiPart::setContentType(QHttpMultiPart::ContentType contentType)\n", false, &_init_f_setContentType_3128, &_call_f_setContentType_3128); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QHttpMultiPart::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QHttpMultiPart::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 QHttpMultiPart::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QHttpMultiPart (qtdecl_QObject (), "QtMultimedia", "QHttpMultiPart_Native", - methods_QHttpMultiPart (), - "@hide\n@alias QHttpMultiPart"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QHttpMultiPart () { return decl_QHttpMultiPart; } - -} - - -class QHttpMultiPart_Adaptor : public QHttpMultiPart, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QHttpMultiPart_Adaptor(); - - // [adaptor ctor] QHttpMultiPart::QHttpMultiPart(QObject *parent) - QHttpMultiPart_Adaptor() : QHttpMultiPart() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QHttpMultiPart::QHttpMultiPart(QObject *parent) - QHttpMultiPart_Adaptor(QObject *parent) : QHttpMultiPart(parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QHttpMultiPart::QHttpMultiPart(QHttpMultiPart::ContentType contentType, QObject *parent) - QHttpMultiPart_Adaptor(QHttpMultiPart::ContentType contentType) : QHttpMultiPart(contentType) - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QHttpMultiPart::QHttpMultiPart(QHttpMultiPart::ContentType contentType, QObject *parent) - QHttpMultiPart_Adaptor(QHttpMultiPart::ContentType contentType, QObject *parent) : QHttpMultiPart(contentType, parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] bool QHttpMultiPart::isSignalConnected(const QMetaMethod &signal) - bool fp_QHttpMultiPart_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QHttpMultiPart::isSignalConnected(signal); - } - - // [expose] int QHttpMultiPart::receivers(const char *signal) - int fp_QHttpMultiPart_receivers_c1731 (const char *signal) const { - return QHttpMultiPart::receivers(signal); - } - - // [expose] QObject *QHttpMultiPart::sender() - QObject * fp_QHttpMultiPart_sender_c0 () const { - return QHttpMultiPart::sender(); - } - - // [expose] int QHttpMultiPart::senderSignalIndex() - int fp_QHttpMultiPart_senderSignalIndex_c0 () const { - return QHttpMultiPart::senderSignalIndex(); - } - - // [emitter impl] void QHttpMultiPart::destroyed(QObject *) - void emitter_QHttpMultiPart_destroyed_1302(QObject *arg1) - { - emit QHttpMultiPart::destroyed(arg1); - } - - // [adaptor impl] bool QHttpMultiPart::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QHttpMultiPart::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QHttpMultiPart_Adaptor::cbs_event_1217_0, arg1); - } else { - return QHttpMultiPart::event(arg1); - } - } - - // [adaptor impl] bool QHttpMultiPart::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QHttpMultiPart::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QHttpMultiPart_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QHttpMultiPart::eventFilter(arg1, arg2); - } - } - - // [adaptor impl] void QHttpMultiPart::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QHttpMultiPart::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QHttpMultiPart_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QHttpMultiPart::childEvent(arg1); - } - } - - // [adaptor impl] void QHttpMultiPart::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QHttpMultiPart::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QHttpMultiPart_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QHttpMultiPart::customEvent(arg1); - } - } - - // [adaptor impl] void QHttpMultiPart::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QHttpMultiPart::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QHttpMultiPart_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QHttpMultiPart::disconnectNotify(signal); - } - } - - // [adaptor impl] void QHttpMultiPart::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QHttpMultiPart::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QHttpMultiPart_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QHttpMultiPart::timerEvent(arg1); - } - } - - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QHttpMultiPart_Adaptor::~QHttpMultiPart_Adaptor() { } - -// Constructor QHttpMultiPart::QHttpMultiPart(QObject *parent) (adaptor class) - -static void _init_ctor_QHttpMultiPart_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHttpMultiPart_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QHttpMultiPart_Adaptor (arg1)); -} - - -// Constructor QHttpMultiPart::QHttpMultiPart(QHttpMultiPart::ContentType contentType, QObject *parent) (adaptor class) - -static void _init_ctor_QHttpMultiPart_Adaptor_4322 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("contentType"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("parent", true, "0"); - decl->add_arg (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QHttpMultiPart_Adaptor_4322 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QHttpMultiPart_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); -} - - -// void QHttpMultiPart::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpMultiPart_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QHttpMultiPart_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// void QHttpMultiPart::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpMultiPart_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QHttpMultiPart_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// emitter void QHttpMultiPart::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QHttpMultiPart_Adaptor *)cls)->emitter_QHttpMultiPart_destroyed_1302 (arg1); -} - - -// void QHttpMultiPart::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpMultiPart_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QHttpMultiPart_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// bool QHttpMultiPart::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QHttpMultiPart_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QHttpMultiPart_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QHttpMultiPart::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QHttpMultiPart_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QHttpMultiPart_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// exposed bool QHttpMultiPart::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QHttpMultiPart_Adaptor *)cls)->fp_QHttpMultiPart_isSignalConnected_c2394 (arg1)); -} - - -// exposed int QHttpMultiPart::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QHttpMultiPart_Adaptor *)cls)->fp_QHttpMultiPart_receivers_c1731 (arg1)); -} - - -// exposed QObject *QHttpMultiPart::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QHttpMultiPart_Adaptor *)cls)->fp_QHttpMultiPart_sender_c0 ()); -} - - -// exposed int QHttpMultiPart::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QHttpMultiPart_Adaptor *)cls)->fp_QHttpMultiPart_senderSignalIndex_c0 ()); -} - - -// void QHttpMultiPart::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpMultiPart_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QHttpMultiPart_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QHttpMultiPart (); - -static gsi::Methods methods_QHttpMultiPart_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHttpMultiPart::QHttpMultiPart(QObject *parent)\nThis method creates an object of class QHttpMultiPart.", &_init_ctor_QHttpMultiPart_Adaptor_1302, &_call_ctor_QHttpMultiPart_Adaptor_1302); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHttpMultiPart::QHttpMultiPart(QHttpMultiPart::ContentType contentType, QObject *parent)\nThis method creates an object of class QHttpMultiPart.", &_init_ctor_QHttpMultiPart_Adaptor_4322, &_call_ctor_QHttpMultiPart_Adaptor_4322); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QHttpMultiPart::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QHttpMultiPart::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QHttpMultiPart::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QHttpMultiPart::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QHttpMultiPart::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QHttpMultiPart::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QHttpMultiPart::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QHttpMultiPart::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QHttpMultiPart::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QHttpMultiPart::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QHttpMultiPart::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - return methods; -} - -gsi::Class decl_QHttpMultiPart_Adaptor (qtdecl_QHttpMultiPart (), "QtMultimedia", "QHttpMultiPart", - methods_QHttpMultiPart_Adaptor (), - "@qt\n@brief Binding of QHttpMultiPart"); - -} - - -// Implementation of the enum wrapper class for QHttpMultiPart::ContentType -namespace qt_gsi -{ - -static gsi::Enum decl_QHttpMultiPart_ContentType_Enum ("QtMultimedia", "QHttpMultiPart_ContentType", - gsi::enum_const ("MixedType", QHttpMultiPart::MixedType, "@brief Enum constant QHttpMultiPart::MixedType") + - gsi::enum_const ("RelatedType", QHttpMultiPart::RelatedType, "@brief Enum constant QHttpMultiPart::RelatedType") + - gsi::enum_const ("FormDataType", QHttpMultiPart::FormDataType, "@brief Enum constant QHttpMultiPart::FormDataType") + - gsi::enum_const ("AlternativeType", QHttpMultiPart::AlternativeType, "@brief Enum constant QHttpMultiPart::AlternativeType"), - "@qt\n@brief This class represents the QHttpMultiPart::ContentType enum"); - -static gsi::QFlagsClass decl_QHttpMultiPart_ContentType_Enums ("QtMultimedia", "QHttpMultiPart_QFlags_ContentType", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QHttpMultiPart_ContentType_Enum_in_parent (decl_QHttpMultiPart_ContentType_Enum.defs ()); -static gsi::ClassExt decl_QHttpMultiPart_ContentType_Enum_as_child (decl_QHttpMultiPart_ContentType_Enum, "ContentType"); -static gsi::ClassExt decl_QHttpMultiPart_ContentType_Enums_as_child (decl_QHttpMultiPart_ContentType_Enums, "QFlags_ContentType"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQHttpPart.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQHttpPart.cc deleted file mode 100644 index 0d40e6883..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQHttpPart.cc +++ /dev/null @@ -1,264 +0,0 @@ - -/* - - 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 gsiDeclQHttpPart.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QHttpPart - -// Constructor QHttpPart::QHttpPart() - - -static void _init_ctor_QHttpPart_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QHttpPart_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QHttpPart ()); -} - - -// Constructor QHttpPart::QHttpPart(const QHttpPart &other) - - -static void _init_ctor_QHttpPart_2217 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QHttpPart_2217 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); - ret.write (new QHttpPart (arg1)); -} - - -// bool QHttpPart::operator!=(const QHttpPart &other) - - -static void _init_f_operator_excl__eq__c2217 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2217 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); - ret.write ((bool)((QHttpPart *)cls)->operator!= (arg1)); -} - - -// QHttpPart &QHttpPart::operator=(const QHttpPart &other) - - -static void _init_f_operator_eq__2217 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2217 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); - ret.write ((QHttpPart &)((QHttpPart *)cls)->operator= (arg1)); -} - - -// bool QHttpPart::operator==(const QHttpPart &other) - - -static void _init_f_operator_eq__eq__c2217 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2217 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); - ret.write ((bool)((QHttpPart *)cls)->operator== (arg1)); -} - - -// void QHttpPart::setBody(const QByteArray &body) - - -static void _init_f_setBody_2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("body"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setBody_2309 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpPart *)cls)->setBody (arg1); -} - - -// void QHttpPart::setBodyDevice(QIODevice *device) - - -static void _init_f_setBodyDevice_1447 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setBodyDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpPart *)cls)->setBodyDevice (arg1); -} - - -// void QHttpPart::setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value) - - -static void _init_f_setHeader_5360 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("header"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setHeader_5360 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpPart *)cls)->setHeader (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); -} - - -// void QHttpPart::setRawHeader(const QByteArray &headerName, const QByteArray &headerValue) - - -static void _init_f_setRawHeader_4510 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("headerValue"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setRawHeader_4510 (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 (heap); - const QByteArray &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpPart *)cls)->setRawHeader (arg1, arg2); -} - - -// void QHttpPart::swap(QHttpPart &other) - - -static void _init_f_swap_1522 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_1522 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QHttpPart &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QHttpPart *)cls)->swap (arg1); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QHttpPart () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHttpPart::QHttpPart()\nThis method creates an object of class QHttpPart.", &_init_ctor_QHttpPart_0, &_call_ctor_QHttpPart_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QHttpPart::QHttpPart(const QHttpPart &other)\nThis method creates an object of class QHttpPart.", &_init_ctor_QHttpPart_2217, &_call_ctor_QHttpPart_2217); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QHttpPart::operator!=(const QHttpPart &other)\n", true, &_init_f_operator_excl__eq__c2217, &_call_f_operator_excl__eq__c2217); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QHttpPart &QHttpPart::operator=(const QHttpPart &other)\n", false, &_init_f_operator_eq__2217, &_call_f_operator_eq__2217); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QHttpPart::operator==(const QHttpPart &other)\n", true, &_init_f_operator_eq__eq__c2217, &_call_f_operator_eq__eq__c2217); - methods += new qt_gsi::GenericMethod ("setBody", "@brief Method void QHttpPart::setBody(const QByteArray &body)\n", false, &_init_f_setBody_2309, &_call_f_setBody_2309); - methods += new qt_gsi::GenericMethod ("setBodyDevice", "@brief Method void QHttpPart::setBodyDevice(QIODevice *device)\n", false, &_init_f_setBodyDevice_1447, &_call_f_setBodyDevice_1447); - methods += new qt_gsi::GenericMethod ("setHeader", "@brief Method void QHttpPart::setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value)\n", false, &_init_f_setHeader_5360, &_call_f_setHeader_5360); - methods += new qt_gsi::GenericMethod ("setRawHeader", "@brief Method void QHttpPart::setRawHeader(const QByteArray &headerName, const QByteArray &headerValue)\n", false, &_init_f_setRawHeader_4510, &_call_f_setRawHeader_4510); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QHttpPart::swap(QHttpPart &other)\n", false, &_init_f_swap_1522, &_call_f_swap_1522); - return methods; -} - -gsi::Class decl_QHttpPart ("QtMultimedia", "QHttpPart", - methods_QHttpPart (), - "@qt\n@brief Binding of QHttpPart"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QHttpPart () { return decl_QHttpPart; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQIPv6Address.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQIPv6Address.cc deleted file mode 100644 index 75af12ee6..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQIPv6Address.cc +++ /dev/null @@ -1,112 +0,0 @@ - -/* - - 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 gsiDeclQIPv6Address.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QIPv6Address - -// Constructor QIPv6Address::QIPv6Address() - - -static void _init_ctor_QIPv6Address_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QIPv6Address_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QIPv6Address ()); -} - - -// quint8 &QIPv6Address::operator [](int index) - - -static void _init_f_operator_index__767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("index"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_index__767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - ret.write ((quint8 &)((QIPv6Address *)cls)->operator [] (arg1)); -} - - -// quint8 QIPv6Address::operator [](int index) - - -static void _init_f_operator_index__c767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("index"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - ret.write ((quint8)((QIPv6Address *)cls)->operator [] (arg1)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QIPv6Address () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QIPv6Address::QIPv6Address()\nThis method creates an object of class QIPv6Address.", &_init_ctor_QIPv6Address_0, &_call_ctor_QIPv6Address_0); - methods += new qt_gsi::GenericMethod ("[]", "@brief Method quint8 &QIPv6Address::operator [](int index)\n", false, &_init_f_operator_index__767, &_call_f_operator_index__767); - methods += new qt_gsi::GenericMethod ("[]", "@brief Method quint8 QIPv6Address::operator [](int index)\n", true, &_init_f_operator_index__c767, &_call_f_operator_index__c767); - return methods; -} - -gsi::Class decl_QIPv6Address ("QtMultimedia", "QIPv6Address", - methods_QIPv6Address (), - "@qt\n@brief Binding of QIPv6Address"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QIPv6Address () { return decl_QIPv6Address; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc index e31bf81fd..59e387abf 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderSettings.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderSettings.cc index dda940a88..f7f345584 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderSettings.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderSettings.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQLocalServer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQLocalServer.cc deleted file mode 100644 index 1bd16149e..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQLocalServer.cc +++ /dev/null @@ -1,1001 +0,0 @@ - -/* - - 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 gsiDeclQLocalServer.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QLocalServer - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QLocalServer::staticMetaObject); -} - - -// void QLocalServer::close() - - -static void _init_f_close_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_close_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalServer *)cls)->close (); -} - - -// QString QLocalServer::errorString() - - -static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QLocalServer *)cls)->errorString ()); -} - - -// QString QLocalServer::fullServerName() - - -static void _init_f_fullServerName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_fullServerName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QLocalServer *)cls)->fullServerName ()); -} - - -// bool QLocalServer::hasPendingConnections() - - -static void _init_f_hasPendingConnections_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_hasPendingConnections_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QLocalServer *)cls)->hasPendingConnections ()); -} - - -// bool QLocalServer::isListening() - - -static void _init_f_isListening_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isListening_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QLocalServer *)cls)->isListening ()); -} - - -// bool QLocalServer::listen(const QString &name) - - -static void _init_f_listen_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_listen_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((bool)((QLocalServer *)cls)->listen (arg1)); -} - - -// bool QLocalServer::listen(QIntegerForSizeof::Signed socketDescriptor) - - -static void _init_f_listen_3470 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socketDescriptor"); - decl->add_arg::Signed > (argspec_0); - decl->set_return (); -} - -static void _call_f_listen_3470 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - ret.write ((bool)((QLocalServer *)cls)->listen (arg1)); -} - - -// int QLocalServer::maxPendingConnections() - - -static void _init_f_maxPendingConnections_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_maxPendingConnections_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QLocalServer *)cls)->maxPendingConnections ()); -} - - -// QLocalSocket *QLocalServer::nextPendingConnection() - - -static void _init_f_nextPendingConnection_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_nextPendingConnection_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QLocalSocket *)((QLocalServer *)cls)->nextPendingConnection ()); -} - - -// QAbstractSocket::SocketError QLocalServer::serverError() - - -static void _init_f_serverError_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_serverError_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QLocalServer *)cls)->serverError ())); -} - - -// QString QLocalServer::serverName() - - -static void _init_f_serverName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_serverName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QLocalServer *)cls)->serverName ()); -} - - -// void QLocalServer::setMaxPendingConnections(int numConnections) - - -static void _init_f_setMaxPendingConnections_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("numConnections"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setMaxPendingConnections_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalServer *)cls)->setMaxPendingConnections (arg1); -} - - -// void QLocalServer::setSocketOptions(QFlags options) - - -static void _init_f_setSocketOptions_3701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("options"); - decl->add_arg > (argspec_0); - decl->set_return (); -} - -static void _call_f_setSocketOptions_3701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QFlags arg1 = args.read > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalServer *)cls)->setSocketOptions (arg1); -} - - -// QFlags QLocalServer::socketOptions() - - -static void _init_f_socketOptions_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_socketOptions_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QFlags)((QLocalServer *)cls)->socketOptions ()); -} - - -// bool QLocalServer::waitForNewConnection(int msec, bool *timedOut) - - -static void _init_f_waitForNewConnection_1709 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msec", true, "0"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("timedOut", true, "0"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_waitForNewConnection_1709 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - ret.write ((bool)((QLocalServer *)cls)->waitForNewConnection (arg1, arg2)); -} - - -// static bool QLocalServer::removeServer(const QString &name) - - -static void _init_f_removeServer_2025 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_removeServer_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((bool)QLocalServer::removeServer (arg1)); -} - - -// static QString QLocalServer::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QLocalServer::tr (arg1, arg2, arg3)); -} - - -// static QString QLocalServer::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QLocalServer::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QLocalServer () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("close", "@brief Method void QLocalServer::close()\n", false, &_init_f_close_0, &_call_f_close_0); - methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QLocalServer::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod ("fullServerName", "@brief Method QString QLocalServer::fullServerName()\n", true, &_init_f_fullServerName_c0, &_call_f_fullServerName_c0); - methods += new qt_gsi::GenericMethod ("hasPendingConnections", "@brief Method bool QLocalServer::hasPendingConnections()\n", true, &_init_f_hasPendingConnections_c0, &_call_f_hasPendingConnections_c0); - methods += new qt_gsi::GenericMethod ("isListening?", "@brief Method bool QLocalServer::isListening()\n", true, &_init_f_isListening_c0, &_call_f_isListening_c0); - methods += new qt_gsi::GenericMethod ("listen", "@brief Method bool QLocalServer::listen(const QString &name)\n", false, &_init_f_listen_2025, &_call_f_listen_2025); - methods += new qt_gsi::GenericMethod ("listen", "@brief Method bool QLocalServer::listen(QIntegerForSizeof::Signed socketDescriptor)\n", false, &_init_f_listen_3470, &_call_f_listen_3470); - methods += new qt_gsi::GenericMethod (":maxPendingConnections", "@brief Method int QLocalServer::maxPendingConnections()\n", true, &_init_f_maxPendingConnections_c0, &_call_f_maxPendingConnections_c0); - methods += new qt_gsi::GenericMethod ("nextPendingConnection", "@brief Method QLocalSocket *QLocalServer::nextPendingConnection()\n", false, &_init_f_nextPendingConnection_0, &_call_f_nextPendingConnection_0); - methods += new qt_gsi::GenericMethod ("serverError", "@brief Method QAbstractSocket::SocketError QLocalServer::serverError()\n", true, &_init_f_serverError_c0, &_call_f_serverError_c0); - methods += new qt_gsi::GenericMethod ("serverName", "@brief Method QString QLocalServer::serverName()\n", true, &_init_f_serverName_c0, &_call_f_serverName_c0); - methods += new qt_gsi::GenericMethod ("setMaxPendingConnections|maxPendingConnections=", "@brief Method void QLocalServer::setMaxPendingConnections(int numConnections)\n", false, &_init_f_setMaxPendingConnections_767, &_call_f_setMaxPendingConnections_767); - methods += new qt_gsi::GenericMethod ("setSocketOptions|socketOptions=", "@brief Method void QLocalServer::setSocketOptions(QFlags options)\n", false, &_init_f_setSocketOptions_3701, &_call_f_setSocketOptions_3701); - methods += new qt_gsi::GenericMethod (":socketOptions", "@brief Method QFlags QLocalServer::socketOptions()\n", true, &_init_f_socketOptions_c0, &_call_f_socketOptions_c0); - methods += new qt_gsi::GenericMethod ("waitForNewConnection", "@brief Method bool QLocalServer::waitForNewConnection(int msec, bool *timedOut)\n", false, &_init_f_waitForNewConnection_1709, &_call_f_waitForNewConnection_1709); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QLocalServer::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("newConnection()", "newConnection", "@brief Signal declaration for QLocalServer::newConnection()\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("removeServer", "@brief Static method bool QLocalServer::removeServer(const QString &name)\nThis method is static and can be called without an instance.", &_init_f_removeServer_2025, &_call_f_removeServer_2025); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QLocalServer::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 QLocalServer::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QLocalServer (qtdecl_QObject (), "QtMultimedia", "QLocalServer_Native", - methods_QLocalServer (), - "@hide\n@alias QLocalServer"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QLocalServer () { return decl_QLocalServer; } - -} - - -class QLocalServer_Adaptor : public QLocalServer, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QLocalServer_Adaptor(); - - // [adaptor ctor] QLocalServer::QLocalServer(QObject *parent) - QLocalServer_Adaptor() : QLocalServer() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QLocalServer::QLocalServer(QObject *parent) - QLocalServer_Adaptor(QObject *parent) : QLocalServer(parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] bool QLocalServer::isSignalConnected(const QMetaMethod &signal) - bool fp_QLocalServer_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QLocalServer::isSignalConnected(signal); - } - - // [expose] int QLocalServer::receivers(const char *signal) - int fp_QLocalServer_receivers_c1731 (const char *signal) const { - return QLocalServer::receivers(signal); - } - - // [expose] QObject *QLocalServer::sender() - QObject * fp_QLocalServer_sender_c0 () const { - return QLocalServer::sender(); - } - - // [expose] int QLocalServer::senderSignalIndex() - int fp_QLocalServer_senderSignalIndex_c0 () const { - return QLocalServer::senderSignalIndex(); - } - - // [emitter impl] void QLocalServer::destroyed(QObject *) - void emitter_QLocalServer_destroyed_1302(QObject *arg1) - { - emit QLocalServer::destroyed(arg1); - } - - // [adaptor impl] bool QLocalServer::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QLocalServer::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QLocalServer_Adaptor::cbs_event_1217_0, arg1); - } else { - return QLocalServer::event(arg1); - } - } - - // [adaptor impl] bool QLocalServer::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QLocalServer::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QLocalServer_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QLocalServer::eventFilter(arg1, arg2); - } - } - - // [adaptor impl] bool QLocalServer::hasPendingConnections() - bool cbs_hasPendingConnections_c0_0() const - { - return QLocalServer::hasPendingConnections(); - } - - virtual bool hasPendingConnections() const - { - if (cb_hasPendingConnections_c0_0.can_issue()) { - return cb_hasPendingConnections_c0_0.issue(&QLocalServer_Adaptor::cbs_hasPendingConnections_c0_0); - } else { - return QLocalServer::hasPendingConnections(); - } - } - - // [emitter impl] void QLocalServer::newConnection() - void emitter_QLocalServer_newConnection_0() - { - emit QLocalServer::newConnection(); - } - - // [adaptor impl] QLocalSocket *QLocalServer::nextPendingConnection() - QLocalSocket * cbs_nextPendingConnection_0_0() - { - return QLocalServer::nextPendingConnection(); - } - - virtual QLocalSocket * nextPendingConnection() - { - if (cb_nextPendingConnection_0_0.can_issue()) { - return cb_nextPendingConnection_0_0.issue(&QLocalServer_Adaptor::cbs_nextPendingConnection_0_0); - } else { - return QLocalServer::nextPendingConnection(); - } - } - - // [adaptor impl] void QLocalServer::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QLocalServer::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QLocalServer_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QLocalServer::childEvent(arg1); - } - } - - // [adaptor impl] void QLocalServer::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QLocalServer::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QLocalServer_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QLocalServer::customEvent(arg1); - } - } - - // [adaptor impl] void QLocalServer::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QLocalServer::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QLocalServer_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QLocalServer::disconnectNotify(signal); - } - } - - // [adaptor impl] void QLocalServer::incomingConnection(quintptr socketDescriptor) - void cbs_incomingConnection_1339_0(quintptr socketDescriptor) - { - QLocalServer::incomingConnection(socketDescriptor); - } - - virtual void incomingConnection(quintptr socketDescriptor) - { - if (cb_incomingConnection_1339_0.can_issue()) { - cb_incomingConnection_1339_0.issue(&QLocalServer_Adaptor::cbs_incomingConnection_1339_0, socketDescriptor); - } else { - QLocalServer::incomingConnection(socketDescriptor); - } - } - - // [adaptor impl] void QLocalServer::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QLocalServer::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QLocalServer_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QLocalServer::timerEvent(arg1); - } - } - - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_hasPendingConnections_c0_0; - gsi::Callback cb_nextPendingConnection_0_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_incomingConnection_1339_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QLocalServer_Adaptor::~QLocalServer_Adaptor() { } - -// Constructor QLocalServer::QLocalServer(QObject *parent) (adaptor class) - -static void _init_ctor_QLocalServer_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QLocalServer_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QLocalServer_Adaptor (arg1)); -} - - -// void QLocalServer::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalServer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// void QLocalServer::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalServer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// emitter void QLocalServer::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QLocalServer_Adaptor *)cls)->emitter_QLocalServer_destroyed_1302 (arg1); -} - - -// void QLocalServer::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalServer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// bool QLocalServer::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QLocalServer::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// bool QLocalServer::hasPendingConnections() - -static void _init_cbs_hasPendingConnections_c0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_hasPendingConnections_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QLocalServer_Adaptor *)cls)->cbs_hasPendingConnections_c0_0 ()); -} - -static void _set_callback_cbs_hasPendingConnections_c0_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_hasPendingConnections_c0_0 = cb; -} - - -// void QLocalServer::incomingConnection(quintptr socketDescriptor) - -static void _init_cbs_incomingConnection_1339_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socketDescriptor"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_incomingConnection_1339_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - quintptr arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalServer_Adaptor *)cls)->cbs_incomingConnection_1339_0 (arg1); -} - -static void _set_callback_cbs_incomingConnection_1339_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_incomingConnection_1339_0 = cb; -} - - -// exposed bool QLocalServer::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QLocalServer_Adaptor *)cls)->fp_QLocalServer_isSignalConnected_c2394 (arg1)); -} - - -// emitter void QLocalServer::newConnection() - -static void _init_emitter_newConnection_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_emitter_newConnection_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - ((QLocalServer_Adaptor *)cls)->emitter_QLocalServer_newConnection_0 (); -} - - -// QLocalSocket *QLocalServer::nextPendingConnection() - -static void _init_cbs_nextPendingConnection_0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_nextPendingConnection_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QLocalSocket *)((QLocalServer_Adaptor *)cls)->cbs_nextPendingConnection_0_0 ()); -} - -static void _set_callback_cbs_nextPendingConnection_0_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_nextPendingConnection_0_0 = cb; -} - - -// exposed int QLocalServer::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QLocalServer_Adaptor *)cls)->fp_QLocalServer_receivers_c1731 (arg1)); -} - - -// exposed QObject *QLocalServer::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QLocalServer_Adaptor *)cls)->fp_QLocalServer_sender_c0 ()); -} - - -// exposed int QLocalServer::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QLocalServer_Adaptor *)cls)->fp_QLocalServer_senderSignalIndex_c0 ()); -} - - -// void QLocalServer::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalServer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QLocalServer_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QLocalServer (); - -static gsi::Methods methods_QLocalServer_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QLocalServer::QLocalServer(QObject *parent)\nThis method creates an object of class QLocalServer.", &_init_ctor_QLocalServer_Adaptor_1302, &_call_ctor_QLocalServer_Adaptor_1302); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QLocalServer::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QLocalServer::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QLocalServer::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QLocalServer::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QLocalServer::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QLocalServer::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("hasPendingConnections", "@hide", true, &_init_cbs_hasPendingConnections_c0_0, &_call_cbs_hasPendingConnections_c0_0); - methods += new qt_gsi::GenericMethod ("hasPendingConnections", "@brief Virtual method bool QLocalServer::hasPendingConnections()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_hasPendingConnections_c0_0, &_call_cbs_hasPendingConnections_c0_0, &_set_callback_cbs_hasPendingConnections_c0_0); - methods += new qt_gsi::GenericMethod ("*incomingConnection", "@hide", false, &_init_cbs_incomingConnection_1339_0, &_call_cbs_incomingConnection_1339_0); - methods += new qt_gsi::GenericMethod ("*incomingConnection", "@brief Virtual method void QLocalServer::incomingConnection(quintptr socketDescriptor)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_incomingConnection_1339_0, &_call_cbs_incomingConnection_1339_0, &_set_callback_cbs_incomingConnection_1339_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QLocalServer::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("emit_newConnection", "@brief Emitter for signal void QLocalServer::newConnection()\nCall this method to emit this signal.", false, &_init_emitter_newConnection_0, &_call_emitter_newConnection_0); - methods += new qt_gsi::GenericMethod ("nextPendingConnection", "@hide", false, &_init_cbs_nextPendingConnection_0_0, &_call_cbs_nextPendingConnection_0_0); - methods += new qt_gsi::GenericMethod ("nextPendingConnection", "@brief Virtual method QLocalSocket *QLocalServer::nextPendingConnection()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_nextPendingConnection_0_0, &_call_cbs_nextPendingConnection_0_0, &_set_callback_cbs_nextPendingConnection_0_0); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QLocalServer::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QLocalServer::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QLocalServer::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QLocalServer::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - return methods; -} - -gsi::Class decl_QLocalServer_Adaptor (qtdecl_QLocalServer (), "QtMultimedia", "QLocalServer", - methods_QLocalServer_Adaptor (), - "@qt\n@brief Binding of QLocalServer"); - -} - - -// Implementation of the enum wrapper class for QLocalServer::SocketOption -namespace qt_gsi -{ - -static gsi::Enum decl_QLocalServer_SocketOption_Enum ("QtMultimedia", "QLocalServer_SocketOption", - gsi::enum_const ("NoOptions", QLocalServer::NoOptions, "@brief Enum constant QLocalServer::NoOptions") + - gsi::enum_const ("UserAccessOption", QLocalServer::UserAccessOption, "@brief Enum constant QLocalServer::UserAccessOption") + - gsi::enum_const ("GroupAccessOption", QLocalServer::GroupAccessOption, "@brief Enum constant QLocalServer::GroupAccessOption") + - gsi::enum_const ("OtherAccessOption", QLocalServer::OtherAccessOption, "@brief Enum constant QLocalServer::OtherAccessOption") + - gsi::enum_const ("WorldAccessOption", QLocalServer::WorldAccessOption, "@brief Enum constant QLocalServer::WorldAccessOption"), - "@qt\n@brief This class represents the QLocalServer::SocketOption enum"); - -static gsi::QFlagsClass decl_QLocalServer_SocketOption_Enums ("QtMultimedia", "QLocalServer_QFlags_SocketOption", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QLocalServer_SocketOption_Enum_in_parent (decl_QLocalServer_SocketOption_Enum.defs ()); -static gsi::ClassExt decl_QLocalServer_SocketOption_Enum_as_child (decl_QLocalServer_SocketOption_Enum, "SocketOption"); -static gsi::ClassExt decl_QLocalServer_SocketOption_Enums_as_child (decl_QLocalServer_SocketOption_Enums, "QFlags_SocketOption"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQLocalSocket.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQLocalSocket.cc deleted file mode 100644 index dbbcade3a..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQLocalSocket.cc +++ /dev/null @@ -1,664 +0,0 @@ - -/* - - 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 gsiDeclQLocalSocket.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QLocalSocket - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QLocalSocket::staticMetaObject); -} - - -// Constructor QLocalSocket::QLocalSocket(QObject *parent) - - -static void _init_ctor_QLocalSocket_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QLocalSocket_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QLocalSocket (arg1)); -} - - -// void QLocalSocket::abort() - - -static void _init_f_abort_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalSocket *)cls)->abort (); -} - - -// () const - - -static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QLocalSocket *)cls)->bytesAvailable ()); -} - - -// () const - - -static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QLocalSocket *)cls)->bytesToWrite ()); -} - - -// () const - - -static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QLocalSocket *)cls)->canReadLine ()); -} - - -// () - - -static void _init_f_close_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_close_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalSocket *)cls)->close (); -} - - -// void QLocalSocket::connectToServer(QFlags openMode) - - -static void _init_f_connectToServer_3242 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("openMode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_0); - decl->set_return (); -} - -static void _call_f_connectToServer_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalSocket *)cls)->connectToServer (arg1); -} - - -// void QLocalSocket::connectToServer(const QString &name, QFlags openMode) - - -static void _init_f_connectToServer_5159 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("openMode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_1); - decl->set_return (); -} - -static void _call_f_connectToServer_5159 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalSocket *)cls)->connectToServer (arg1, arg2); -} - - -// void QLocalSocket::disconnectFromServer() - - -static void _init_f_disconnectFromServer_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_disconnectFromServer_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalSocket *)cls)->disconnectFromServer (); -} - - -// QLocalSocket::LocalSocketError QLocalSocket::error() - - -static void _init_f_error_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_error_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QLocalSocket *)cls)->error ())); -} - - -// bool QLocalSocket::flush() - - -static void _init_f_flush_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_flush_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QLocalSocket *)cls)->flush ()); -} - - -// QString QLocalSocket::fullServerName() - - -static void _init_f_fullServerName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_fullServerName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QLocalSocket *)cls)->fullServerName ()); -} - - -// () const - - -static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isSequential_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QLocalSocket *)cls)->isSequential ()); -} - - -// bool QLocalSocket::isValid() - - -static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QLocalSocket *)cls)->isValid ()); -} - - -// (QFlags) - - -static void _init_f_open_3242 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("openMode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_0); - decl->set_return (); -} - -static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - ret.write ((bool)((QLocalSocket *)cls)->open (arg1)); -} - - -// qint64 QLocalSocket::readBufferSize() - - -static void _init_f_readBufferSize_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_readBufferSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QLocalSocket *)cls)->readBufferSize ()); -} - - -// QString QLocalSocket::serverName() - - -static void _init_f_serverName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_serverName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QLocalSocket *)cls)->serverName ()); -} - - -// void QLocalSocket::setReadBufferSize(qint64 size) - - -static void _init_f_setReadBufferSize_986 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("size"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - qint64 arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalSocket *)cls)->setReadBufferSize (arg1); -} - - -// void QLocalSocket::setServerName(const QString &name) - - -static void _init_f_setServerName_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setServerName_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QLocalSocket *)cls)->setServerName (arg1); -} - - -// bool QLocalSocket::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor, QLocalSocket::LocalSocketState socketState, QFlags openMode) - - -static void _init_f_setSocketDescriptor_9858 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socketDescriptor"); - decl->add_arg::Signed > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("socketState", true, "QLocalSocket::ConnectedState"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("openMode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_2); - decl->set_return (); -} - -static void _call_f_setSocketDescriptor_9858 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocalSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - ret.write ((bool)((QLocalSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); -} - - -// QIntegerForSizeof::Signed QLocalSocket::socketDescriptor() - - -static void _init_f_socketDescriptor_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::Signed > (); -} - -static void _call_f_socketDescriptor_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::Signed > ((QIntegerForSizeof::Signed)((QLocalSocket *)cls)->socketDescriptor ()); -} - - -// QLocalSocket::LocalSocketState QLocalSocket::state() - - -static void _init_f_state_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QLocalSocket *)cls)->state ())); -} - - -// (int) - - -static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QLocalSocket *)cls)->waitForBytesWritten (arg1)); -} - - -// bool QLocalSocket::waitForConnected(int msecs) - - -static void _init_f_waitForConnected_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QLocalSocket *)cls)->waitForConnected (arg1)); -} - - -// bool QLocalSocket::waitForDisconnected(int msecs) - - -static void _init_f_waitForDisconnected_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QLocalSocket *)cls)->waitForDisconnected (arg1)); -} - - -// (int) - - -static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QLocalSocket *)cls)->waitForReadyRead (arg1)); -} - - -// static QString QLocalSocket::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QLocalSocket::tr (arg1, arg2, arg3)); -} - - -// static QString QLocalSocket::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QLocalSocket::trUtf8 (arg1, arg2, arg3)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QLocalSocket () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QLocalSocket::QLocalSocket(QObject *parent)\nThis method creates an object of class QLocalSocket.", &_init_ctor_QLocalSocket_1302, &_call_ctor_QLocalSocket_1302); - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QLocalSocket::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QIODevice::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QIODevice::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); - methods += new qt_gsi::GenericMethod ("connectToServer", "@brief Method void QLocalSocket::connectToServer(QFlags openMode)\n", false, &_init_f_connectToServer_3242, &_call_f_connectToServer_3242); - methods += new qt_gsi::GenericMethod ("connectToServer", "@brief Method void QLocalSocket::connectToServer(const QString &name, QFlags openMode)\n", false, &_init_f_connectToServer_5159, &_call_f_connectToServer_5159); - methods += new qt_gsi::GenericMethod ("disconnectFromServer", "@brief Method void QLocalSocket::disconnectFromServer()\n", false, &_init_f_disconnectFromServer_0, &_call_f_disconnectFromServer_0); - methods += new qt_gsi::GenericMethod ("error", "@brief Method QLocalSocket::LocalSocketError QLocalSocket::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); - methods += new qt_gsi::GenericMethod ("flush", "@brief Method bool QLocalSocket::flush()\n", false, &_init_f_flush_0, &_call_f_flush_0); - methods += new qt_gsi::GenericMethod ("fullServerName", "@brief Method QString QLocalSocket::fullServerName()\n", true, &_init_f_fullServerName_c0, &_call_f_fullServerName_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QLocalSocket::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method (QFlags)\nThis is a reimplementation of QIODevice::open", false, &_init_f_open_3242, &_call_f_open_3242); - methods += new qt_gsi::GenericMethod (":readBufferSize", "@brief Method qint64 QLocalSocket::readBufferSize()\n", true, &_init_f_readBufferSize_c0, &_call_f_readBufferSize_c0); - methods += new qt_gsi::GenericMethod (":serverName", "@brief Method QString QLocalSocket::serverName()\n", true, &_init_f_serverName_c0, &_call_f_serverName_c0); - methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method void QLocalSocket::setReadBufferSize(qint64 size)\n", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); - methods += new qt_gsi::GenericMethod ("setServerName|serverName=", "@brief Method void QLocalSocket::setServerName(const QString &name)\n", false, &_init_f_setServerName_2025, &_call_f_setServerName_2025); - methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method bool QLocalSocket::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor, QLocalSocket::LocalSocketState socketState, QFlags openMode)\n", false, &_init_f_setSocketDescriptor_9858, &_call_f_setSocketDescriptor_9858); - methods += new qt_gsi::GenericMethod ("socketDescriptor", "@brief Method QIntegerForSizeof::Signed QLocalSocket::socketDescriptor()\n", true, &_init_f_socketDescriptor_c0, &_call_f_socketDescriptor_c0); - methods += new qt_gsi::GenericMethod ("state", "@brief Method QLocalSocket::LocalSocketState QLocalSocket::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); - methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method bool QLocalSocket::waitForConnected(int msecs)\n", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); - methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method bool QLocalSocket::waitForDisconnected(int msecs)\n", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QIODevice::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); - methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QLocalSocket::aboutToClose()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QLocalSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QLocalSocket::connected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QLocalSocket::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("disconnected()", "disconnected", "@brief Signal declaration for QLocalSocket::disconnected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("error(QLocalSocket::LocalSocketError)", "error_sig", gsi::arg("socketError"), "@brief Signal declaration for QLocalSocket::error(QLocalSocket::LocalSocketError socketError)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readChannelFinished()", "readChannelFinished", "@brief Signal declaration for QLocalSocket::readChannelFinished()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readyRead()", "readyRead", "@brief Signal declaration for QLocalSocket::readyRead()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("stateChanged(QLocalSocket::LocalSocketState)", "stateChanged", gsi::arg("socketState"), "@brief Signal declaration for QLocalSocket::stateChanged(QLocalSocket::LocalSocketState socketState)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QLocalSocket::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 QLocalSocket::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 &qtdecl_QIODevice (); - -qt_gsi::QtNativeClass decl_QLocalSocket (qtdecl_QIODevice (), "QtMultimedia", "QLocalSocket", - methods_QLocalSocket (), - "@qt\n@brief Binding of QLocalSocket"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QLocalSocket () { return decl_QLocalSocket; } - -} - - -// Implementation of the enum wrapper class for QLocalSocket::LocalSocketError -namespace qt_gsi -{ - -static gsi::Enum decl_QLocalSocket_LocalSocketError_Enum ("QtMultimedia", "QLocalSocket_LocalSocketError", - gsi::enum_const ("ConnectionRefusedError", QLocalSocket::ConnectionRefusedError, "@brief Enum constant QLocalSocket::ConnectionRefusedError") + - gsi::enum_const ("PeerClosedError", QLocalSocket::PeerClosedError, "@brief Enum constant QLocalSocket::PeerClosedError") + - gsi::enum_const ("ServerNotFoundError", QLocalSocket::ServerNotFoundError, "@brief Enum constant QLocalSocket::ServerNotFoundError") + - gsi::enum_const ("SocketAccessError", QLocalSocket::SocketAccessError, "@brief Enum constant QLocalSocket::SocketAccessError") + - gsi::enum_const ("SocketResourceError", QLocalSocket::SocketResourceError, "@brief Enum constant QLocalSocket::SocketResourceError") + - gsi::enum_const ("SocketTimeoutError", QLocalSocket::SocketTimeoutError, "@brief Enum constant QLocalSocket::SocketTimeoutError") + - gsi::enum_const ("DatagramTooLargeError", QLocalSocket::DatagramTooLargeError, "@brief Enum constant QLocalSocket::DatagramTooLargeError") + - gsi::enum_const ("ConnectionError", QLocalSocket::ConnectionError, "@brief Enum constant QLocalSocket::ConnectionError") + - gsi::enum_const ("UnsupportedSocketOperationError", QLocalSocket::UnsupportedSocketOperationError, "@brief Enum constant QLocalSocket::UnsupportedSocketOperationError") + - gsi::enum_const ("UnknownSocketError", QLocalSocket::UnknownSocketError, "@brief Enum constant QLocalSocket::UnknownSocketError") + - gsi::enum_const ("OperationError", QLocalSocket::OperationError, "@brief Enum constant QLocalSocket::OperationError"), - "@qt\n@brief This class represents the QLocalSocket::LocalSocketError enum"); - -static gsi::QFlagsClass decl_QLocalSocket_LocalSocketError_Enums ("QtMultimedia", "QLocalSocket_QFlags_LocalSocketError", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QLocalSocket_LocalSocketError_Enum_in_parent (decl_QLocalSocket_LocalSocketError_Enum.defs ()); -static gsi::ClassExt decl_QLocalSocket_LocalSocketError_Enum_as_child (decl_QLocalSocket_LocalSocketError_Enum, "LocalSocketError"); -static gsi::ClassExt decl_QLocalSocket_LocalSocketError_Enums_as_child (decl_QLocalSocket_LocalSocketError_Enums, "QFlags_LocalSocketError"); - -} - - -// Implementation of the enum wrapper class for QLocalSocket::LocalSocketState -namespace qt_gsi -{ - -static gsi::Enum decl_QLocalSocket_LocalSocketState_Enum ("QtMultimedia", "QLocalSocket_LocalSocketState", - gsi::enum_const ("UnconnectedState", QLocalSocket::UnconnectedState, "@brief Enum constant QLocalSocket::UnconnectedState") + - gsi::enum_const ("ConnectingState", QLocalSocket::ConnectingState, "@brief Enum constant QLocalSocket::ConnectingState") + - gsi::enum_const ("ConnectedState", QLocalSocket::ConnectedState, "@brief Enum constant QLocalSocket::ConnectedState") + - gsi::enum_const ("ClosingState", QLocalSocket::ClosingState, "@brief Enum constant QLocalSocket::ClosingState"), - "@qt\n@brief This class represents the QLocalSocket::LocalSocketState enum"); - -static gsi::QFlagsClass decl_QLocalSocket_LocalSocketState_Enums ("QtMultimedia", "QLocalSocket_QFlags_LocalSocketState", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QLocalSocket_LocalSocketState_Enum_in_parent (decl_QLocalSocket_LocalSocketState_Enum.defs ()); -static gsi::ClassExt decl_QLocalSocket_LocalSocketState_Enum_as_child (decl_QLocalSocket_LocalSocketState_Enum, "LocalSocketState"); -static gsi::ClassExt decl_QLocalSocket_LocalSocketState_Enums_as_child (decl_QLocalSocket_LocalSocketState_Enums, "QFlags_LocalSocketState"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc index 6a6018b53..7a83b632a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc index 26acf2cd9..14325eb58 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaBindableInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaBindableInterface.cc index 357dad59f..3ea77ed20 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaBindableInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaBindableInterface.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc index 45fdec278..7ccb6548d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContent.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContent.cc index c87033fed..761bb3b10 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContent.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContent.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc index 5da389405..7ee57a6ca 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc index 1dc26a217..539a9e5b1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaMetaData.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaMetaData.cc index a255331d2..45a6d0c1d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaMetaData.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaMetaData.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc index 206f5d028..87c50f768 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc index 51933ade1..9ed2b1ac9 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc index 7b67db175..8a140ea2b 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc @@ -32,9 +32,9 @@ #include #include #include +#include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc index 9b9832086..053d55577 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc index 038fb7e7e..a07bccc33 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc index 4d6b2ed5e..d1e1dacb5 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc index 79052e3e8..8312eba14 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaResource.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaResource.cc index 20e6f4dd9..f1304c8cf 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaResource.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaResource.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc index 0582b0045..7bc5dc75a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc index a4d3cfe09..a50fddc66 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc index fd3960269..d8b4fd326 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc index f690a9ca5..48256f466 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc index e24f94e32..453274a81 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderHint.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderHint.cc index 832797c38..063a8ac3c 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderHint.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderHint.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc index b9538138e..e06ce2509 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc index fa758c3eb..52823b442 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc index a127fc8a8..08fa62b8a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc index f81a07322..a4a68fb6c 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeInterval.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeInterval.cc index ffcbeff37..7ff041fb6 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeInterval.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeInterval.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeRange.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeRange.cc index 2db71197f..c941dcdde 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeRange.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeRange.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc index 56d47e524..fe58cc4a5 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc index 868e0d0ec..c16f2ba78 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc index 3c5c58874..d4de18af3 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMultimedia.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMultimedia.cc index 5b3bfd03e..07cff31de 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMultimedia.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMultimedia.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkAccessManager.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkAccessManager.cc deleted file mode 100644 index b7223da26..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkAccessManager.cc +++ /dev/null @@ -1,1441 +0,0 @@ - -/* - - 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 gsiDeclQNetworkAccessManager.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkAccessManager - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QNetworkAccessManager::staticMetaObject); -} - - -// QNetworkConfiguration QNetworkAccessManager::activeConfiguration() - - -static void _init_f_activeConfiguration_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_activeConfiguration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkConfiguration)((QNetworkAccessManager *)cls)->activeConfiguration ()); -} - - -// QAbstractNetworkCache *QNetworkAccessManager::cache() - - -static void _init_f_cache_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_cache_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QAbstractNetworkCache *)((QNetworkAccessManager *)cls)->cache ()); -} - - -// void QNetworkAccessManager::clearAccessCache() - - -static void _init_f_clearAccessCache_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_clearAccessCache_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->clearAccessCache (); -} - - -// QNetworkConfiguration QNetworkAccessManager::configuration() - - -static void _init_f_configuration_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_configuration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkConfiguration)((QNetworkAccessManager *)cls)->configuration ()); -} - - -// void QNetworkAccessManager::connectToHost(const QString &hostName, quint16 port) - - -static void _init_f_connectToHost_3017 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port", true, "80"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_connectToHost_3017 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args ? args.read (heap) : (quint16)(80); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->connectToHost (arg1, arg2); -} - - -// void QNetworkAccessManager::connectToHostEncrypted(const QString &hostName, quint16 port, const QSslConfiguration &sslConfiguration) - - -static void _init_f_connectToHostEncrypted_5977 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port", true, "443"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("sslConfiguration", true, "QSslConfiguration::defaultConfiguration()"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -static void _call_f_connectToHostEncrypted_5977 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args ? args.read (heap) : (quint16)(443); - const QSslConfiguration &arg3 = args ? args.read (heap) : (const QSslConfiguration &)(QSslConfiguration::defaultConfiguration()); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->connectToHostEncrypted (arg1, arg2, arg3); -} - - -// QNetworkCookieJar *QNetworkAccessManager::cookieJar() - - -static void _init_f_cookieJar_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_cookieJar_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkCookieJar *)((QNetworkAccessManager *)cls)->cookieJar ()); -} - - -// QNetworkReply *QNetworkAccessManager::deleteResource(const QNetworkRequest &request) - - -static void _init_f_deleteResource_2885 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_deleteResource_2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->deleteResource (arg1)); -} - - -// QNetworkReply *QNetworkAccessManager::get(const QNetworkRequest &request) - - -static void _init_f_get_2885 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_get_2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->get (arg1)); -} - - -// QNetworkReply *QNetworkAccessManager::head(const QNetworkRequest &request) - - -static void _init_f_head_2885 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_head_2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->head (arg1)); -} - - -// QNetworkAccessManager::NetworkAccessibility QNetworkAccessManager::networkAccessible() - - -static void _init_f_networkAccessible_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_networkAccessible_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkAccessManager *)cls)->networkAccessible ())); -} - - -// QNetworkReply *QNetworkAccessManager::post(const QNetworkRequest &request, QIODevice *data) - - -static void _init_f_post_4224 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("data"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_post_4224 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->post (arg1, arg2)); -} - - -// QNetworkReply *QNetworkAccessManager::post(const QNetworkRequest &request, const QByteArray &data) - - -static void _init_f_post_5086 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("data"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_post_5086 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->post (arg1, arg2)); -} - - -// QNetworkReply *QNetworkAccessManager::post(const QNetworkRequest &request, QHttpMultiPart *multiPart) - - -static void _init_f_post_4826 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("multiPart"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_post_4826 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QHttpMultiPart *arg2 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->post (arg1, arg2)); -} - - -// QNetworkProxy QNetworkAccessManager::proxy() - - -static void _init_f_proxy_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_proxy_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkProxy)((QNetworkAccessManager *)cls)->proxy ()); -} - - -// QNetworkProxyFactory *QNetworkAccessManager::proxyFactory() - - -static void _init_f_proxyFactory_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_proxyFactory_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkProxyFactory *)((QNetworkAccessManager *)cls)->proxyFactory ()); -} - - -// QNetworkReply *QNetworkAccessManager::put(const QNetworkRequest &request, QIODevice *data) - - -static void _init_f_put_4224 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("data"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_put_4224 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->put (arg1, arg2)); -} - - -// QNetworkReply *QNetworkAccessManager::put(const QNetworkRequest &request, const QByteArray &data) - - -static void _init_f_put_5086 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("data"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_put_5086 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->put (arg1, arg2)); -} - - -// QNetworkReply *QNetworkAccessManager::put(const QNetworkRequest &request, QHttpMultiPart *multiPart) - - -static void _init_f_put_4826 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("multiPart"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_put_4826 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QHttpMultiPart *arg2 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->put (arg1, arg2)); -} - - -// QNetworkReply *QNetworkAccessManager::sendCustomRequest(const QNetworkRequest &request, const QByteArray &verb, QIODevice *data) - - -static void _init_f_sendCustomRequest_6425 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("request"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("verb"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("data", true, "0"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -static void _call_f_sendCustomRequest_6425 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); - QIODevice *arg3 = args ? args.read (heap) : (QIODevice *)(0); - ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->sendCustomRequest (arg1, arg2, arg3)); -} - - -// void QNetworkAccessManager::setCache(QAbstractNetworkCache *cache) - - -static void _init_f_setCache_2737 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cache"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setCache_2737 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QAbstractNetworkCache *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->setCache (arg1); -} - - -// void QNetworkAccessManager::setConfiguration(const QNetworkConfiguration &config) - - -static void _init_f_setConfiguration_3508 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("config"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setConfiguration_3508 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->setConfiguration (arg1); -} - - -// void QNetworkAccessManager::setCookieJar(QNetworkCookieJar *cookieJar) - - -static void _init_f_setCookieJar_2336 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookieJar"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setCookieJar_2336 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkCookieJar *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->setCookieJar (arg1); -} - - -// void QNetworkAccessManager::setNetworkAccessible(QNetworkAccessManager::NetworkAccessibility accessible) - - -static void _init_f_setNetworkAccessible_4770 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("accessible"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setNetworkAccessible_4770 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->setNetworkAccessible (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// void QNetworkAccessManager::setProxy(const QNetworkProxy &proxy) - - -static void _init_f_setProxy_2686 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("proxy"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->setProxy (arg1); -} - - -// void QNetworkAccessManager::setProxyFactory(QNetworkProxyFactory *factory) - - -static void _init_f_setProxyFactory_2723 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("factory"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setProxyFactory_2723 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkProxyFactory *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager *)cls)->setProxyFactory (arg1); -} - - -// QStringList QNetworkAccessManager::supportedSchemes() - - -static void _init_f_supportedSchemes_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_supportedSchemes_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QStringList)((QNetworkAccessManager *)cls)->supportedSchemes ()); -} - - -// static QString QNetworkAccessManager::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkAccessManager::tr (arg1, arg2, arg3)); -} - - -// static QString QNetworkAccessManager::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkAccessManager::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkAccessManager () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("activeConfiguration", "@brief Method QNetworkConfiguration QNetworkAccessManager::activeConfiguration()\n", true, &_init_f_activeConfiguration_c0, &_call_f_activeConfiguration_c0); - methods += new qt_gsi::GenericMethod (":cache", "@brief Method QAbstractNetworkCache *QNetworkAccessManager::cache()\n", true, &_init_f_cache_c0, &_call_f_cache_c0); - methods += new qt_gsi::GenericMethod ("clearAccessCache", "@brief Method void QNetworkAccessManager::clearAccessCache()\n", false, &_init_f_clearAccessCache_0, &_call_f_clearAccessCache_0); - methods += new qt_gsi::GenericMethod (":configuration", "@brief Method QNetworkConfiguration QNetworkAccessManager::configuration()\n", true, &_init_f_configuration_c0, &_call_f_configuration_c0); - methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method void QNetworkAccessManager::connectToHost(const QString &hostName, quint16 port)\n", false, &_init_f_connectToHost_3017, &_call_f_connectToHost_3017); - methods += new qt_gsi::GenericMethod ("connectToHostEncrypted", "@brief Method void QNetworkAccessManager::connectToHostEncrypted(const QString &hostName, quint16 port, const QSslConfiguration &sslConfiguration)\n", false, &_init_f_connectToHostEncrypted_5977, &_call_f_connectToHostEncrypted_5977); - methods += new qt_gsi::GenericMethod (":cookieJar", "@brief Method QNetworkCookieJar *QNetworkAccessManager::cookieJar()\n", true, &_init_f_cookieJar_c0, &_call_f_cookieJar_c0); - methods += new qt_gsi::GenericMethod ("deleteResource", "@brief Method QNetworkReply *QNetworkAccessManager::deleteResource(const QNetworkRequest &request)\n", false, &_init_f_deleteResource_2885, &_call_f_deleteResource_2885); - methods += new qt_gsi::GenericMethod ("get", "@brief Method QNetworkReply *QNetworkAccessManager::get(const QNetworkRequest &request)\n", false, &_init_f_get_2885, &_call_f_get_2885); - methods += new qt_gsi::GenericMethod ("head", "@brief Method QNetworkReply *QNetworkAccessManager::head(const QNetworkRequest &request)\n", false, &_init_f_head_2885, &_call_f_head_2885); - methods += new qt_gsi::GenericMethod (":networkAccessible", "@brief Method QNetworkAccessManager::NetworkAccessibility QNetworkAccessManager::networkAccessible()\n", true, &_init_f_networkAccessible_c0, &_call_f_networkAccessible_c0); - methods += new qt_gsi::GenericMethod ("post", "@brief Method QNetworkReply *QNetworkAccessManager::post(const QNetworkRequest &request, QIODevice *data)\n", false, &_init_f_post_4224, &_call_f_post_4224); - methods += new qt_gsi::GenericMethod ("post", "@brief Method QNetworkReply *QNetworkAccessManager::post(const QNetworkRequest &request, const QByteArray &data)\n", false, &_init_f_post_5086, &_call_f_post_5086); - methods += new qt_gsi::GenericMethod ("post", "@brief Method QNetworkReply *QNetworkAccessManager::post(const QNetworkRequest &request, QHttpMultiPart *multiPart)\n", false, &_init_f_post_4826, &_call_f_post_4826); - methods += new qt_gsi::GenericMethod (":proxy", "@brief Method QNetworkProxy QNetworkAccessManager::proxy()\n", true, &_init_f_proxy_c0, &_call_f_proxy_c0); - methods += new qt_gsi::GenericMethod (":proxyFactory", "@brief Method QNetworkProxyFactory *QNetworkAccessManager::proxyFactory()\n", true, &_init_f_proxyFactory_c0, &_call_f_proxyFactory_c0); - methods += new qt_gsi::GenericMethod ("put", "@brief Method QNetworkReply *QNetworkAccessManager::put(const QNetworkRequest &request, QIODevice *data)\n", false, &_init_f_put_4224, &_call_f_put_4224); - methods += new qt_gsi::GenericMethod ("put", "@brief Method QNetworkReply *QNetworkAccessManager::put(const QNetworkRequest &request, const QByteArray &data)\n", false, &_init_f_put_5086, &_call_f_put_5086); - methods += new qt_gsi::GenericMethod ("put", "@brief Method QNetworkReply *QNetworkAccessManager::put(const QNetworkRequest &request, QHttpMultiPart *multiPart)\n", false, &_init_f_put_4826, &_call_f_put_4826); - methods += new qt_gsi::GenericMethod ("sendCustomRequest", "@brief Method QNetworkReply *QNetworkAccessManager::sendCustomRequest(const QNetworkRequest &request, const QByteArray &verb, QIODevice *data)\n", false, &_init_f_sendCustomRequest_6425, &_call_f_sendCustomRequest_6425); - methods += new qt_gsi::GenericMethod ("setCache|cache=", "@brief Method void QNetworkAccessManager::setCache(QAbstractNetworkCache *cache)\n", false, &_init_f_setCache_2737, &_call_f_setCache_2737); - methods += new qt_gsi::GenericMethod ("setConfiguration|configuration=", "@brief Method void QNetworkAccessManager::setConfiguration(const QNetworkConfiguration &config)\n", false, &_init_f_setConfiguration_3508, &_call_f_setConfiguration_3508); - methods += new qt_gsi::GenericMethod ("setCookieJar|cookieJar=", "@brief Method void QNetworkAccessManager::setCookieJar(QNetworkCookieJar *cookieJar)\n", false, &_init_f_setCookieJar_2336, &_call_f_setCookieJar_2336); - methods += new qt_gsi::GenericMethod ("setNetworkAccessible|networkAccessible=", "@brief Method void QNetworkAccessManager::setNetworkAccessible(QNetworkAccessManager::NetworkAccessibility accessible)\n", false, &_init_f_setNetworkAccessible_4770, &_call_f_setNetworkAccessible_4770); - methods += new qt_gsi::GenericMethod ("setProxy|proxy=", "@brief Method void QNetworkAccessManager::setProxy(const QNetworkProxy &proxy)\n", false, &_init_f_setProxy_2686, &_call_f_setProxy_2686); - methods += new qt_gsi::GenericMethod ("setProxyFactory|proxyFactory=", "@brief Method void QNetworkAccessManager::setProxyFactory(QNetworkProxyFactory *factory)\n", false, &_init_f_setProxyFactory_2723, &_call_f_setProxyFactory_2723); - methods += new qt_gsi::GenericMethod ("supportedSchemes", "@brief Method QStringList QNetworkAccessManager::supportedSchemes()\n", true, &_init_f_supportedSchemes_c0, &_call_f_supportedSchemes_c0); - methods += gsi::qt_signal ("authenticationRequired(QNetworkReply *, QAuthenticator *)", "authenticationRequired", gsi::arg("reply"), gsi::arg("authenticator"), "@brief Signal declaration for QNetworkAccessManager::authenticationRequired(QNetworkReply *reply, QAuthenticator *authenticator)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QNetworkAccessManager::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("encrypted(QNetworkReply *)", "encrypted", gsi::arg("reply"), "@brief Signal declaration for QNetworkAccessManager::encrypted(QNetworkReply *reply)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("finished(QNetworkReply *)", "finished", gsi::arg("reply"), "@brief Signal declaration for QNetworkAccessManager::finished(QNetworkReply *reply)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("networkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility)", "networkAccessibleChanged", gsi::arg("accessible"), "@brief Signal declaration for QNetworkAccessManager::networkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility accessible)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("networkSessionConnected()", "networkSessionConnected", "@brief Signal declaration for QNetworkAccessManager::networkSessionConnected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("preSharedKeyAuthenticationRequired(QNetworkReply *, QSslPreSharedKeyAuthenticator *)", "preSharedKeyAuthenticationRequired", gsi::arg("reply"), gsi::arg("authenticator"), "@brief Signal declaration for QNetworkAccessManager::preSharedKeyAuthenticationRequired(QNetworkReply *reply, QSslPreSharedKeyAuthenticator *authenticator)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("proxyAuthenticationRequired(const QNetworkProxy &, QAuthenticator *)", "proxyAuthenticationRequired", gsi::arg("proxy"), gsi::arg("authenticator"), "@brief Signal declaration for QNetworkAccessManager::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal & > ("sslErrors(QNetworkReply *, const QList &)", "sslErrors", gsi::arg("reply"), gsi::arg("errors"), "@brief Signal declaration for QNetworkAccessManager::sslErrors(QNetworkReply *reply, const QList &errors)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkAccessManager::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 QNetworkAccessManager::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QNetworkAccessManager (qtdecl_QObject (), "QtMultimedia", "QNetworkAccessManager_Native", - methods_QNetworkAccessManager (), - "@hide\n@alias QNetworkAccessManager"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkAccessManager () { return decl_QNetworkAccessManager; } - -} - - -class QNetworkAccessManager_Adaptor : public QNetworkAccessManager, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QNetworkAccessManager_Adaptor(); - - // [adaptor ctor] QNetworkAccessManager::QNetworkAccessManager(QObject *parent) - QNetworkAccessManager_Adaptor() : QNetworkAccessManager() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QNetworkAccessManager::QNetworkAccessManager(QObject *parent) - QNetworkAccessManager_Adaptor(QObject *parent) : QNetworkAccessManager(parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] bool QNetworkAccessManager::isSignalConnected(const QMetaMethod &signal) - bool fp_QNetworkAccessManager_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QNetworkAccessManager::isSignalConnected(signal); - } - - // [expose] int QNetworkAccessManager::receivers(const char *signal) - int fp_QNetworkAccessManager_receivers_c1731 (const char *signal) const { - return QNetworkAccessManager::receivers(signal); - } - - // [expose] QObject *QNetworkAccessManager::sender() - QObject * fp_QNetworkAccessManager_sender_c0 () const { - return QNetworkAccessManager::sender(); - } - - // [expose] int QNetworkAccessManager::senderSignalIndex() - int fp_QNetworkAccessManager_senderSignalIndex_c0 () const { - return QNetworkAccessManager::senderSignalIndex(); - } - - // [expose] QStringList QNetworkAccessManager::supportedSchemesImplementation() - QStringList fp_QNetworkAccessManager_supportedSchemesImplementation_c0 () const { - return QNetworkAccessManager::supportedSchemesImplementation(); - } - - // [emitter impl] void QNetworkAccessManager::authenticationRequired(QNetworkReply *reply, QAuthenticator *authenticator) - void emitter_QNetworkAccessManager_authenticationRequired_3939(QNetworkReply *reply, QAuthenticator *authenticator) - { - emit QNetworkAccessManager::authenticationRequired(reply, authenticator); - } - - // [emitter impl] void QNetworkAccessManager::destroyed(QObject *) - void emitter_QNetworkAccessManager_destroyed_1302(QObject *arg1) - { - emit QNetworkAccessManager::destroyed(arg1); - } - - // [emitter impl] void QNetworkAccessManager::encrypted(QNetworkReply *reply) - void emitter_QNetworkAccessManager_encrypted_1973(QNetworkReply *reply) - { - emit QNetworkAccessManager::encrypted(reply); - } - - // [adaptor impl] bool QNetworkAccessManager::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QNetworkAccessManager::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QNetworkAccessManager_Adaptor::cbs_event_1217_0, arg1); - } else { - return QNetworkAccessManager::event(arg1); - } - } - - // [adaptor impl] bool QNetworkAccessManager::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QNetworkAccessManager::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QNetworkAccessManager_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QNetworkAccessManager::eventFilter(arg1, arg2); - } - } - - // [emitter impl] void QNetworkAccessManager::finished(QNetworkReply *reply) - void emitter_QNetworkAccessManager_finished_1973(QNetworkReply *reply) - { - emit QNetworkAccessManager::finished(reply); - } - - // [emitter impl] void QNetworkAccessManager::networkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility accessible) - void emitter_QNetworkAccessManager_networkAccessibleChanged_4770(QNetworkAccessManager::NetworkAccessibility accessible) - { - emit QNetworkAccessManager::networkAccessibleChanged(accessible); - } - - // [emitter impl] void QNetworkAccessManager::networkSessionConnected() - void emitter_QNetworkAccessManager_networkSessionConnected_0() - { - emit QNetworkAccessManager::networkSessionConnected(); - } - - // [emitter impl] void QNetworkAccessManager::preSharedKeyAuthenticationRequired(QNetworkReply *reply, QSslPreSharedKeyAuthenticator *authenticator) - void emitter_QNetworkAccessManager_preSharedKeyAuthenticationRequired_5436(QNetworkReply *reply, QSslPreSharedKeyAuthenticator *authenticator) - { - emit QNetworkAccessManager::preSharedKeyAuthenticationRequired(reply, authenticator); - } - - // [emitter impl] void QNetworkAccessManager::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator) - void emitter_QNetworkAccessManager_proxyAuthenticationRequired_4652(const QNetworkProxy &proxy, QAuthenticator *authenticator) - { - emit QNetworkAccessManager::proxyAuthenticationRequired(proxy, authenticator); - } - - // [emitter impl] void QNetworkAccessManager::sslErrors(QNetworkReply *reply, const QList &errors) - void emitter_QNetworkAccessManager_sslErrors_4702(QNetworkReply *reply, const QList &errors) - { - emit QNetworkAccessManager::sslErrors(reply, errors); - } - - // [adaptor impl] void QNetworkAccessManager::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QNetworkAccessManager::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QNetworkAccessManager_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QNetworkAccessManager::childEvent(arg1); - } - } - - // [adaptor impl] QNetworkReply *QNetworkAccessManager::createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice *outgoingData) - QNetworkReply * cbs_createRequest_7733_1(const qt_gsi::Converter::target_type & op, const QNetworkRequest &request, QIODevice *outgoingData) - { - return QNetworkAccessManager::createRequest(qt_gsi::QtToCppAdaptor(op).cref(), request, outgoingData); - } - - virtual QNetworkReply * createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice *outgoingData) - { - if (cb_createRequest_7733_1.can_issue()) { - return cb_createRequest_7733_1.issue::target_type &, const QNetworkRequest &, QIODevice *>(&QNetworkAccessManager_Adaptor::cbs_createRequest_7733_1, qt_gsi::CppToQtAdaptor(op), request, outgoingData); - } else { - return QNetworkAccessManager::createRequest(op, request, outgoingData); - } - } - - // [adaptor impl] void QNetworkAccessManager::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QNetworkAccessManager::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QNetworkAccessManager_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QNetworkAccessManager::customEvent(arg1); - } - } - - // [adaptor impl] void QNetworkAccessManager::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QNetworkAccessManager::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QNetworkAccessManager_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QNetworkAccessManager::disconnectNotify(signal); - } - } - - // [adaptor impl] void QNetworkAccessManager::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QNetworkAccessManager::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QNetworkAccessManager_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QNetworkAccessManager::timerEvent(arg1); - } - } - - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_createRequest_7733_1; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QNetworkAccessManager_Adaptor::~QNetworkAccessManager_Adaptor() { } - -// Constructor QNetworkAccessManager::QNetworkAccessManager(QObject *parent) (adaptor class) - -static void _init_ctor_QNetworkAccessManager_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkAccessManager_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QNetworkAccessManager_Adaptor (arg1)); -} - - -// emitter void QNetworkAccessManager::authenticationRequired(QNetworkReply *reply, QAuthenticator *authenticator) - -static void _init_emitter_authenticationRequired_3939 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("reply"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("authenticator"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_emitter_authenticationRequired_3939 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - QAuthenticator *arg2 = args.read (heap); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_authenticationRequired_3939 (arg1, arg2); -} - - -// void QNetworkAccessManager::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkAccessManager_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// QNetworkReply *QNetworkAccessManager::createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice *outgoingData) - -static void _init_cbs_createRequest_7733_1 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("op"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("request"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("outgoingData"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -static void _call_cbs_createRequest_7733_1 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QNetworkRequest &arg2 = args.read (heap); - QIODevice *arg3 = args.read (heap); - ret.write ((QNetworkReply *)((QNetworkAccessManager_Adaptor *)cls)->cbs_createRequest_7733_1 (arg1, arg2, arg3)); -} - -static void _set_callback_cbs_createRequest_7733_1 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkAccessManager_Adaptor *)cls)->cb_createRequest_7733_1 = cb; -} - - -// void QNetworkAccessManager::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkAccessManager_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// emitter void QNetworkAccessManager::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_destroyed_1302 (arg1); -} - - -// void QNetworkAccessManager::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkAccessManager_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// emitter void QNetworkAccessManager::encrypted(QNetworkReply *reply) - -static void _init_emitter_encrypted_1973 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("reply"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_encrypted_1973 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_encrypted_1973 (arg1); -} - - -// bool QNetworkAccessManager::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkAccessManager_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QNetworkAccessManager::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkAccessManager_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// emitter void QNetworkAccessManager::finished(QNetworkReply *reply) - -static void _init_emitter_finished_1973 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("reply"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_finished_1973 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_finished_1973 (arg1); -} - - -// exposed bool QNetworkAccessManager::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->fp_QNetworkAccessManager_isSignalConnected_c2394 (arg1)); -} - - -// emitter void QNetworkAccessManager::networkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility accessible) - -static void _init_emitter_networkAccessibleChanged_4770 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("accessible"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_emitter_networkAccessibleChanged_4770 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_networkAccessibleChanged_4770 (arg1); -} - - -// emitter void QNetworkAccessManager::networkSessionConnected() - -static void _init_emitter_networkSessionConnected_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_emitter_networkSessionConnected_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_networkSessionConnected_0 (); -} - - -// emitter void QNetworkAccessManager::preSharedKeyAuthenticationRequired(QNetworkReply *reply, QSslPreSharedKeyAuthenticator *authenticator) - -static void _init_emitter_preSharedKeyAuthenticationRequired_5436 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("reply"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("authenticator"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_emitter_preSharedKeyAuthenticationRequired_5436 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - QSslPreSharedKeyAuthenticator *arg2 = args.read (heap); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_preSharedKeyAuthenticationRequired_5436 (arg1, arg2); -} - - -// emitter void QNetworkAccessManager::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator) - -static void _init_emitter_proxyAuthenticationRequired_4652 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("proxy"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("authenticator"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_emitter_proxyAuthenticationRequired_4652 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - QAuthenticator *arg2 = args.read (heap); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_proxyAuthenticationRequired_4652 (arg1, arg2); -} - - -// exposed int QNetworkAccessManager::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QNetworkAccessManager_Adaptor *)cls)->fp_QNetworkAccessManager_receivers_c1731 (arg1)); -} - - -// exposed QObject *QNetworkAccessManager::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QNetworkAccessManager_Adaptor *)cls)->fp_QNetworkAccessManager_sender_c0 ()); -} - - -// exposed int QNetworkAccessManager::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkAccessManager_Adaptor *)cls)->fp_QNetworkAccessManager_senderSignalIndex_c0 ()); -} - - -// emitter void QNetworkAccessManager::sslErrors(QNetworkReply *reply, const QList &errors) - -static void _init_emitter_sslErrors_4702 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("reply"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("errors"); - decl->add_arg & > (argspec_1); - decl->set_return (); -} - -static void _call_emitter_sslErrors_4702 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); - ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_sslErrors_4702 (arg1, arg2); -} - - -// exposed QStringList QNetworkAccessManager::supportedSchemesImplementation() - -static void _init_fp_supportedSchemesImplementation_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_supportedSchemesImplementation_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QStringList)((QNetworkAccessManager_Adaptor *)cls)->fp_QNetworkAccessManager_supportedSchemesImplementation_c0 ()); -} - - -// void QNetworkAccessManager::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAccessManager_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkAccessManager_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QNetworkAccessManager (); - -static gsi::Methods methods_QNetworkAccessManager_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkAccessManager::QNetworkAccessManager(QObject *parent)\nThis method creates an object of class QNetworkAccessManager.", &_init_ctor_QNetworkAccessManager_Adaptor_1302, &_call_ctor_QNetworkAccessManager_Adaptor_1302); - methods += new qt_gsi::GenericMethod ("emit_authenticationRequired", "@brief Emitter for signal void QNetworkAccessManager::authenticationRequired(QNetworkReply *reply, QAuthenticator *authenticator)\nCall this method to emit this signal.", false, &_init_emitter_authenticationRequired_3939, &_call_emitter_authenticationRequired_3939); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QNetworkAccessManager::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*createRequest", "@hide", false, &_init_cbs_createRequest_7733_1, &_call_cbs_createRequest_7733_1); - methods += new qt_gsi::GenericMethod ("*createRequest", "@brief Virtual method QNetworkReply *QNetworkAccessManager::createRequest(QNetworkAccessManager::Operation op, const QNetworkRequest &request, QIODevice *outgoingData)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_createRequest_7733_1, &_call_cbs_createRequest_7733_1, &_set_callback_cbs_createRequest_7733_1); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QNetworkAccessManager::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QNetworkAccessManager::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QNetworkAccessManager::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("emit_encrypted", "@brief Emitter for signal void QNetworkAccessManager::encrypted(QNetworkReply *reply)\nCall this method to emit this signal.", false, &_init_emitter_encrypted_1973, &_call_emitter_encrypted_1973); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QNetworkAccessManager::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QNetworkAccessManager::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("emit_finished", "@brief Emitter for signal void QNetworkAccessManager::finished(QNetworkReply *reply)\nCall this method to emit this signal.", false, &_init_emitter_finished_1973, &_call_emitter_finished_1973); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QNetworkAccessManager::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("emit_networkAccessibleChanged", "@brief Emitter for signal void QNetworkAccessManager::networkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility accessible)\nCall this method to emit this signal.", false, &_init_emitter_networkAccessibleChanged_4770, &_call_emitter_networkAccessibleChanged_4770); - methods += new qt_gsi::GenericMethod ("emit_networkSessionConnected", "@brief Emitter for signal void QNetworkAccessManager::networkSessionConnected()\nCall this method to emit this signal.", false, &_init_emitter_networkSessionConnected_0, &_call_emitter_networkSessionConnected_0); - methods += new qt_gsi::GenericMethod ("emit_preSharedKeyAuthenticationRequired", "@brief Emitter for signal void QNetworkAccessManager::preSharedKeyAuthenticationRequired(QNetworkReply *reply, QSslPreSharedKeyAuthenticator *authenticator)\nCall this method to emit this signal.", false, &_init_emitter_preSharedKeyAuthenticationRequired_5436, &_call_emitter_preSharedKeyAuthenticationRequired_5436); - methods += new qt_gsi::GenericMethod ("emit_proxyAuthenticationRequired", "@brief Emitter for signal void QNetworkAccessManager::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator)\nCall this method to emit this signal.", false, &_init_emitter_proxyAuthenticationRequired_4652, &_call_emitter_proxyAuthenticationRequired_4652); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QNetworkAccessManager::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QNetworkAccessManager::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QNetworkAccessManager::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("emit_sslErrors", "@brief Emitter for signal void QNetworkAccessManager::sslErrors(QNetworkReply *reply, const QList &errors)\nCall this method to emit this signal.", false, &_init_emitter_sslErrors_4702, &_call_emitter_sslErrors_4702); - methods += new qt_gsi::GenericMethod ("*supportedSchemesImplementation", "@brief Method QStringList QNetworkAccessManager::supportedSchemesImplementation()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_supportedSchemesImplementation_c0, &_call_fp_supportedSchemesImplementation_c0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QNetworkAccessManager::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - return methods; -} - -gsi::Class decl_QNetworkAccessManager_Adaptor (qtdecl_QNetworkAccessManager (), "QtMultimedia", "QNetworkAccessManager", - methods_QNetworkAccessManager_Adaptor (), - "@qt\n@brief Binding of QNetworkAccessManager"); - -} - - -// Implementation of the enum wrapper class for QNetworkAccessManager::NetworkAccessibility -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkAccessManager_NetworkAccessibility_Enum ("QtMultimedia", "QNetworkAccessManager_NetworkAccessibility", - gsi::enum_const ("UnknownAccessibility", QNetworkAccessManager::UnknownAccessibility, "@brief Enum constant QNetworkAccessManager::UnknownAccessibility") + - gsi::enum_const ("NotAccessible", QNetworkAccessManager::NotAccessible, "@brief Enum constant QNetworkAccessManager::NotAccessible") + - gsi::enum_const ("Accessible", QNetworkAccessManager::Accessible, "@brief Enum constant QNetworkAccessManager::Accessible"), - "@qt\n@brief This class represents the QNetworkAccessManager::NetworkAccessibility enum"); - -static gsi::QFlagsClass decl_QNetworkAccessManager_NetworkAccessibility_Enums ("QtMultimedia", "QNetworkAccessManager_QFlags_NetworkAccessibility", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkAccessManager_NetworkAccessibility_Enum_in_parent (decl_QNetworkAccessManager_NetworkAccessibility_Enum.defs ()); -static gsi::ClassExt decl_QNetworkAccessManager_NetworkAccessibility_Enum_as_child (decl_QNetworkAccessManager_NetworkAccessibility_Enum, "NetworkAccessibility"); -static gsi::ClassExt decl_QNetworkAccessManager_NetworkAccessibility_Enums_as_child (decl_QNetworkAccessManager_NetworkAccessibility_Enums, "QFlags_NetworkAccessibility"); - -} - - -// Implementation of the enum wrapper class for QNetworkAccessManager::Operation -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkAccessManager_Operation_Enum ("QtMultimedia", "QNetworkAccessManager_Operation", - gsi::enum_const ("HeadOperation", QNetworkAccessManager::HeadOperation, "@brief Enum constant QNetworkAccessManager::HeadOperation") + - gsi::enum_const ("GetOperation", QNetworkAccessManager::GetOperation, "@brief Enum constant QNetworkAccessManager::GetOperation") + - gsi::enum_const ("PutOperation", QNetworkAccessManager::PutOperation, "@brief Enum constant QNetworkAccessManager::PutOperation") + - gsi::enum_const ("PostOperation", QNetworkAccessManager::PostOperation, "@brief Enum constant QNetworkAccessManager::PostOperation") + - gsi::enum_const ("DeleteOperation", QNetworkAccessManager::DeleteOperation, "@brief Enum constant QNetworkAccessManager::DeleteOperation") + - gsi::enum_const ("CustomOperation", QNetworkAccessManager::CustomOperation, "@brief Enum constant QNetworkAccessManager::CustomOperation") + - gsi::enum_const ("UnknownOperation", QNetworkAccessManager::UnknownOperation, "@brief Enum constant QNetworkAccessManager::UnknownOperation"), - "@qt\n@brief This class represents the QNetworkAccessManager::Operation enum"); - -static gsi::QFlagsClass decl_QNetworkAccessManager_Operation_Enums ("QtMultimedia", "QNetworkAccessManager_QFlags_Operation", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkAccessManager_Operation_Enum_in_parent (decl_QNetworkAccessManager_Operation_Enum.defs ()); -static gsi::ClassExt decl_QNetworkAccessManager_Operation_Enum_as_child (decl_QNetworkAccessManager_Operation_Enum, "Operation"); -static gsi::ClassExt decl_QNetworkAccessManager_Operation_Enums_as_child (decl_QNetworkAccessManager_Operation_Enums, "QFlags_Operation"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkAddressEntry.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkAddressEntry.cc deleted file mode 100644 index e7a6249ee..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkAddressEntry.cc +++ /dev/null @@ -1,322 +0,0 @@ - -/* - - 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 gsiDeclQNetworkAddressEntry.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkAddressEntry - -// Constructor QNetworkAddressEntry::QNetworkAddressEntry() - - -static void _init_ctor_QNetworkAddressEntry_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QNetworkAddressEntry_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QNetworkAddressEntry ()); -} - - -// Constructor QNetworkAddressEntry::QNetworkAddressEntry(const QNetworkAddressEntry &other) - - -static void _init_ctor_QNetworkAddressEntry_3380 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkAddressEntry_3380 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); - ret.write (new QNetworkAddressEntry (arg1)); -} - - -// QHostAddress QNetworkAddressEntry::broadcast() - - -static void _init_f_broadcast_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_broadcast_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QHostAddress)((QNetworkAddressEntry *)cls)->broadcast ()); -} - - -// QHostAddress QNetworkAddressEntry::ip() - - -static void _init_f_ip_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_ip_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QHostAddress)((QNetworkAddressEntry *)cls)->ip ()); -} - - -// QHostAddress QNetworkAddressEntry::netmask() - - -static void _init_f_netmask_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_netmask_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QHostAddress)((QNetworkAddressEntry *)cls)->netmask ()); -} - - -// bool QNetworkAddressEntry::operator!=(const QNetworkAddressEntry &other) - - -static void _init_f_operator_excl__eq__c3380 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c3380 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); - ret.write ((bool)((QNetworkAddressEntry *)cls)->operator!= (arg1)); -} - - -// QNetworkAddressEntry &QNetworkAddressEntry::operator=(const QNetworkAddressEntry &other) - - -static void _init_f_operator_eq__3380 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3380 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); - ret.write ((QNetworkAddressEntry &)((QNetworkAddressEntry *)cls)->operator= (arg1)); -} - - -// bool QNetworkAddressEntry::operator==(const QNetworkAddressEntry &other) - - -static void _init_f_operator_eq__eq__c3380 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c3380 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); - ret.write ((bool)((QNetworkAddressEntry *)cls)->operator== (arg1)); -} - - -// int QNetworkAddressEntry::prefixLength() - - -static void _init_f_prefixLength_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_prefixLength_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkAddressEntry *)cls)->prefixLength ()); -} - - -// void QNetworkAddressEntry::setBroadcast(const QHostAddress &newBroadcast) - - -static void _init_f_setBroadcast_2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("newBroadcast"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setBroadcast_2518 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAddressEntry *)cls)->setBroadcast (arg1); -} - - -// void QNetworkAddressEntry::setIp(const QHostAddress &newIp) - - -static void _init_f_setIp_2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("newIp"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setIp_2518 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAddressEntry *)cls)->setIp (arg1); -} - - -// void QNetworkAddressEntry::setNetmask(const QHostAddress &newNetmask) - - -static void _init_f_setNetmask_2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("newNetmask"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setNetmask_2518 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAddressEntry *)cls)->setNetmask (arg1); -} - - -// void QNetworkAddressEntry::setPrefixLength(int length) - - -static void _init_f_setPrefixLength_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("length"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPrefixLength_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAddressEntry *)cls)->setPrefixLength (arg1); -} - - -// void QNetworkAddressEntry::swap(QNetworkAddressEntry &other) - - -static void _init_f_swap_2685 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2685 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkAddressEntry &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkAddressEntry *)cls)->swap (arg1); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkAddressEntry () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkAddressEntry::QNetworkAddressEntry()\nThis method creates an object of class QNetworkAddressEntry.", &_init_ctor_QNetworkAddressEntry_0, &_call_ctor_QNetworkAddressEntry_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkAddressEntry::QNetworkAddressEntry(const QNetworkAddressEntry &other)\nThis method creates an object of class QNetworkAddressEntry.", &_init_ctor_QNetworkAddressEntry_3380, &_call_ctor_QNetworkAddressEntry_3380); - methods += new qt_gsi::GenericMethod (":broadcast", "@brief Method QHostAddress QNetworkAddressEntry::broadcast()\n", true, &_init_f_broadcast_c0, &_call_f_broadcast_c0); - methods += new qt_gsi::GenericMethod (":ip", "@brief Method QHostAddress QNetworkAddressEntry::ip()\n", true, &_init_f_ip_c0, &_call_f_ip_c0); - methods += new qt_gsi::GenericMethod (":netmask", "@brief Method QHostAddress QNetworkAddressEntry::netmask()\n", true, &_init_f_netmask_c0, &_call_f_netmask_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QNetworkAddressEntry::operator!=(const QNetworkAddressEntry &other)\n", true, &_init_f_operator_excl__eq__c3380, &_call_f_operator_excl__eq__c3380); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QNetworkAddressEntry &QNetworkAddressEntry::operator=(const QNetworkAddressEntry &other)\n", false, &_init_f_operator_eq__3380, &_call_f_operator_eq__3380); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QNetworkAddressEntry::operator==(const QNetworkAddressEntry &other)\n", true, &_init_f_operator_eq__eq__c3380, &_call_f_operator_eq__eq__c3380); - methods += new qt_gsi::GenericMethod (":prefixLength", "@brief Method int QNetworkAddressEntry::prefixLength()\n", true, &_init_f_prefixLength_c0, &_call_f_prefixLength_c0); - methods += new qt_gsi::GenericMethod ("setBroadcast|broadcast=", "@brief Method void QNetworkAddressEntry::setBroadcast(const QHostAddress &newBroadcast)\n", false, &_init_f_setBroadcast_2518, &_call_f_setBroadcast_2518); - methods += new qt_gsi::GenericMethod ("setIp|ip=", "@brief Method void QNetworkAddressEntry::setIp(const QHostAddress &newIp)\n", false, &_init_f_setIp_2518, &_call_f_setIp_2518); - methods += new qt_gsi::GenericMethod ("setNetmask|netmask=", "@brief Method void QNetworkAddressEntry::setNetmask(const QHostAddress &newNetmask)\n", false, &_init_f_setNetmask_2518, &_call_f_setNetmask_2518); - methods += new qt_gsi::GenericMethod ("setPrefixLength|prefixLength=", "@brief Method void QNetworkAddressEntry::setPrefixLength(int length)\n", false, &_init_f_setPrefixLength_767, &_call_f_setPrefixLength_767); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QNetworkAddressEntry::swap(QNetworkAddressEntry &other)\n", false, &_init_f_swap_2685, &_call_f_swap_2685); - return methods; -} - -gsi::Class decl_QNetworkAddressEntry ("QtMultimedia", "QNetworkAddressEntry", - methods_QNetworkAddressEntry (), - "@qt\n@brief Binding of QNetworkAddressEntry"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkAddressEntry () { return decl_QNetworkAddressEntry; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCacheMetaData.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCacheMetaData.cc deleted file mode 100644 index 4464922c3..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCacheMetaData.cc +++ /dev/null @@ -1,376 +0,0 @@ - -/* - - 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 gsiDeclQNetworkCacheMetaData.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkCacheMetaData - -// Constructor QNetworkCacheMetaData::QNetworkCacheMetaData() - - -static void _init_ctor_QNetworkCacheMetaData_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QNetworkCacheMetaData_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QNetworkCacheMetaData ()); -} - - -// Constructor QNetworkCacheMetaData::QNetworkCacheMetaData(const QNetworkCacheMetaData &other) - - -static void _init_ctor_QNetworkCacheMetaData_3377 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkCacheMetaData_3377 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - ret.write (new QNetworkCacheMetaData (arg1)); -} - - -// QDateTime QNetworkCacheMetaData::expirationDate() - - -static void _init_f_expirationDate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_expirationDate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QDateTime)((QNetworkCacheMetaData *)cls)->expirationDate ()); -} - - -// bool QNetworkCacheMetaData::isValid() - - -static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkCacheMetaData *)cls)->isValid ()); -} - - -// QDateTime QNetworkCacheMetaData::lastModified() - - -static void _init_f_lastModified_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_lastModified_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QDateTime)((QNetworkCacheMetaData *)cls)->lastModified ()); -} - - -// bool QNetworkCacheMetaData::operator!=(const QNetworkCacheMetaData &other) - - -static void _init_f_operator_excl__eq__c3377 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c3377 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCacheMetaData *)cls)->operator!= (arg1)); -} - - -// QNetworkCacheMetaData &QNetworkCacheMetaData::operator=(const QNetworkCacheMetaData &other) - - -static void _init_f_operator_eq__3377 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3377 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - ret.write ((QNetworkCacheMetaData &)((QNetworkCacheMetaData *)cls)->operator= (arg1)); -} - - -// bool QNetworkCacheMetaData::operator==(const QNetworkCacheMetaData &other) - - -static void _init_f_operator_eq__eq__c3377 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c3377 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCacheMetaData *)cls)->operator== (arg1)); -} - - -// QList QNetworkCacheMetaData::rawHeaders() - - -static void _init_f_rawHeaders_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_rawHeaders_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QNetworkCacheMetaData *)cls)->rawHeaders ()); -} - - -// bool QNetworkCacheMetaData::saveToDisk() - - -static void _init_f_saveToDisk_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_saveToDisk_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkCacheMetaData *)cls)->saveToDisk ()); -} - - -// void QNetworkCacheMetaData::setExpirationDate(const QDateTime &dateTime) - - -static void _init_f_setExpirationDate_2175 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("dateTime"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setExpirationDate_2175 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCacheMetaData *)cls)->setExpirationDate (arg1); -} - - -// void QNetworkCacheMetaData::setLastModified(const QDateTime &dateTime) - - -static void _init_f_setLastModified_2175 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("dateTime"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setLastModified_2175 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCacheMetaData *)cls)->setLastModified (arg1); -} - - -// void QNetworkCacheMetaData::setRawHeaders(const QList &headers) - - -static void _init_f_setRawHeaders_4991 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headers"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setRawHeaders_4991 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCacheMetaData *)cls)->setRawHeaders (arg1); -} - - -// void QNetworkCacheMetaData::setSaveToDisk(bool allow) - - -static void _init_f_setSaveToDisk_864 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("allow"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setSaveToDisk_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - bool arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCacheMetaData *)cls)->setSaveToDisk (arg1); -} - - -// void QNetworkCacheMetaData::setUrl(const QUrl &url) - - -static void _init_f_setUrl_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCacheMetaData *)cls)->setUrl (arg1); -} - - -// void QNetworkCacheMetaData::swap(QNetworkCacheMetaData &other) - - -static void _init_f_swap_2682 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2682 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkCacheMetaData &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCacheMetaData *)cls)->swap (arg1); -} - - -// QUrl QNetworkCacheMetaData::url() - - -static void _init_f_url_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_url_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QUrl)((QNetworkCacheMetaData *)cls)->url ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkCacheMetaData () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkCacheMetaData::QNetworkCacheMetaData()\nThis method creates an object of class QNetworkCacheMetaData.", &_init_ctor_QNetworkCacheMetaData_0, &_call_ctor_QNetworkCacheMetaData_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkCacheMetaData::QNetworkCacheMetaData(const QNetworkCacheMetaData &other)\nThis method creates an object of class QNetworkCacheMetaData.", &_init_ctor_QNetworkCacheMetaData_3377, &_call_ctor_QNetworkCacheMetaData_3377); - methods += new qt_gsi::GenericMethod (":expirationDate", "@brief Method QDateTime QNetworkCacheMetaData::expirationDate()\n", true, &_init_f_expirationDate_c0, &_call_f_expirationDate_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QNetworkCacheMetaData::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod (":lastModified", "@brief Method QDateTime QNetworkCacheMetaData::lastModified()\n", true, &_init_f_lastModified_c0, &_call_f_lastModified_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QNetworkCacheMetaData::operator!=(const QNetworkCacheMetaData &other)\n", true, &_init_f_operator_excl__eq__c3377, &_call_f_operator_excl__eq__c3377); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QNetworkCacheMetaData &QNetworkCacheMetaData::operator=(const QNetworkCacheMetaData &other)\n", false, &_init_f_operator_eq__3377, &_call_f_operator_eq__3377); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QNetworkCacheMetaData::operator==(const QNetworkCacheMetaData &other)\n", true, &_init_f_operator_eq__eq__c3377, &_call_f_operator_eq__eq__c3377); - methods += new qt_gsi::GenericMethod (":rawHeaders", "@brief Method QList QNetworkCacheMetaData::rawHeaders()\n", true, &_init_f_rawHeaders_c0, &_call_f_rawHeaders_c0); - methods += new qt_gsi::GenericMethod (":saveToDisk", "@brief Method bool QNetworkCacheMetaData::saveToDisk()\n", true, &_init_f_saveToDisk_c0, &_call_f_saveToDisk_c0); - methods += new qt_gsi::GenericMethod ("setExpirationDate|expirationDate=", "@brief Method void QNetworkCacheMetaData::setExpirationDate(const QDateTime &dateTime)\n", false, &_init_f_setExpirationDate_2175, &_call_f_setExpirationDate_2175); - methods += new qt_gsi::GenericMethod ("setLastModified|lastModified=", "@brief Method void QNetworkCacheMetaData::setLastModified(const QDateTime &dateTime)\n", false, &_init_f_setLastModified_2175, &_call_f_setLastModified_2175); - methods += new qt_gsi::GenericMethod ("setRawHeaders|rawHeaders=", "@brief Method void QNetworkCacheMetaData::setRawHeaders(const QList &headers)\n", false, &_init_f_setRawHeaders_4991, &_call_f_setRawHeaders_4991); - methods += new qt_gsi::GenericMethod ("setSaveToDisk|saveToDisk=", "@brief Method void QNetworkCacheMetaData::setSaveToDisk(bool allow)\n", false, &_init_f_setSaveToDisk_864, &_call_f_setSaveToDisk_864); - methods += new qt_gsi::GenericMethod ("setUrl|url=", "@brief Method void QNetworkCacheMetaData::setUrl(const QUrl &url)\n", false, &_init_f_setUrl_1701, &_call_f_setUrl_1701); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QNetworkCacheMetaData::swap(QNetworkCacheMetaData &other)\n", false, &_init_f_swap_2682, &_call_f_swap_2682); - methods += new qt_gsi::GenericMethod (":url", "@brief Method QUrl QNetworkCacheMetaData::url()\n", true, &_init_f_url_c0, &_call_f_url_c0); - return methods; -} - -gsi::Class decl_QNetworkCacheMetaData ("QtMultimedia", "QNetworkCacheMetaData", - methods_QNetworkCacheMetaData (), - "@qt\n@brief Binding of QNetworkCacheMetaData"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkCacheMetaData () { return decl_QNetworkCacheMetaData; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkConfiguration.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkConfiguration.cc deleted file mode 100644 index de5ebe9b8..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkConfiguration.cc +++ /dev/null @@ -1,446 +0,0 @@ - -/* - - 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 gsiDeclQNetworkConfiguration.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkConfiguration - -// Constructor QNetworkConfiguration::QNetworkConfiguration() - - -static void _init_ctor_QNetworkConfiguration_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QNetworkConfiguration_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QNetworkConfiguration ()); -} - - -// Constructor QNetworkConfiguration::QNetworkConfiguration(const QNetworkConfiguration &other) - - -static void _init_ctor_QNetworkConfiguration_3508 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkConfiguration_3508 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - ret.write (new QNetworkConfiguration (arg1)); -} - - -// QNetworkConfiguration::BearerType QNetworkConfiguration::bearerType() - - -static void _init_f_bearerType_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_bearerType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkConfiguration *)cls)->bearerType ())); -} - - -// QNetworkConfiguration::BearerType QNetworkConfiguration::bearerTypeFamily() - - -static void _init_f_bearerTypeFamily_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_bearerTypeFamily_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkConfiguration *)cls)->bearerTypeFamily ())); -} - - -// QString QNetworkConfiguration::bearerTypeName() - - -static void _init_f_bearerTypeName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bearerTypeName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkConfiguration *)cls)->bearerTypeName ()); -} - - -// QList QNetworkConfiguration::children() - - -static void _init_f_children_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_children_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QNetworkConfiguration *)cls)->children ()); -} - - -// QString QNetworkConfiguration::identifier() - - -static void _init_f_identifier_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_identifier_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkConfiguration *)cls)->identifier ()); -} - - -// bool QNetworkConfiguration::isRoamingAvailable() - - -static void _init_f_isRoamingAvailable_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isRoamingAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkConfiguration *)cls)->isRoamingAvailable ()); -} - - -// bool QNetworkConfiguration::isValid() - - -static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkConfiguration *)cls)->isValid ()); -} - - -// QString QNetworkConfiguration::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkConfiguration *)cls)->name ()); -} - - -// bool QNetworkConfiguration::operator!=(const QNetworkConfiguration &other) - - -static void _init_f_operator_excl__eq__c3508 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c3508 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - ret.write ((bool)((QNetworkConfiguration *)cls)->operator!= (arg1)); -} - - -// QNetworkConfiguration &QNetworkConfiguration::operator=(const QNetworkConfiguration &other) - - -static void _init_f_operator_eq__3508 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3508 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - ret.write ((QNetworkConfiguration &)((QNetworkConfiguration *)cls)->operator= (arg1)); -} - - -// bool QNetworkConfiguration::operator==(const QNetworkConfiguration &other) - - -static void _init_f_operator_eq__eq__c3508 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c3508 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - ret.write ((bool)((QNetworkConfiguration *)cls)->operator== (arg1)); -} - - -// QNetworkConfiguration::Purpose QNetworkConfiguration::purpose() - - -static void _init_f_purpose_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_purpose_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkConfiguration *)cls)->purpose ())); -} - - -// QFlags QNetworkConfiguration::state() - - -static void _init_f_state_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QFlags)((QNetworkConfiguration *)cls)->state ()); -} - - -// void QNetworkConfiguration::swap(QNetworkConfiguration &other) - - -static void _init_f_swap_2813 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2813 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkConfiguration &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkConfiguration *)cls)->swap (arg1); -} - - -// QNetworkConfiguration::Type QNetworkConfiguration::type() - - -static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_type_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkConfiguration *)cls)->type ())); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkConfiguration () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkConfiguration::QNetworkConfiguration()\nThis method creates an object of class QNetworkConfiguration.", &_init_ctor_QNetworkConfiguration_0, &_call_ctor_QNetworkConfiguration_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkConfiguration::QNetworkConfiguration(const QNetworkConfiguration &other)\nThis method creates an object of class QNetworkConfiguration.", &_init_ctor_QNetworkConfiguration_3508, &_call_ctor_QNetworkConfiguration_3508); - methods += new qt_gsi::GenericMethod ("bearerType", "@brief Method QNetworkConfiguration::BearerType QNetworkConfiguration::bearerType()\n", true, &_init_f_bearerType_c0, &_call_f_bearerType_c0); - methods += new qt_gsi::GenericMethod ("bearerTypeFamily", "@brief Method QNetworkConfiguration::BearerType QNetworkConfiguration::bearerTypeFamily()\n", true, &_init_f_bearerTypeFamily_c0, &_call_f_bearerTypeFamily_c0); - methods += new qt_gsi::GenericMethod ("bearerTypeName", "@brief Method QString QNetworkConfiguration::bearerTypeName()\n", true, &_init_f_bearerTypeName_c0, &_call_f_bearerTypeName_c0); - methods += new qt_gsi::GenericMethod ("children", "@brief Method QList QNetworkConfiguration::children()\n", true, &_init_f_children_c0, &_call_f_children_c0); - methods += new qt_gsi::GenericMethod ("identifier", "@brief Method QString QNetworkConfiguration::identifier()\n", true, &_init_f_identifier_c0, &_call_f_identifier_c0); - methods += new qt_gsi::GenericMethod ("isRoamingAvailable?", "@brief Method bool QNetworkConfiguration::isRoamingAvailable()\n", true, &_init_f_isRoamingAvailable_c0, &_call_f_isRoamingAvailable_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QNetworkConfiguration::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QNetworkConfiguration::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QNetworkConfiguration::operator!=(const QNetworkConfiguration &other)\n", true, &_init_f_operator_excl__eq__c3508, &_call_f_operator_excl__eq__c3508); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QNetworkConfiguration &QNetworkConfiguration::operator=(const QNetworkConfiguration &other)\n", false, &_init_f_operator_eq__3508, &_call_f_operator_eq__3508); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QNetworkConfiguration::operator==(const QNetworkConfiguration &other)\n", true, &_init_f_operator_eq__eq__c3508, &_call_f_operator_eq__eq__c3508); - methods += new qt_gsi::GenericMethod ("purpose", "@brief Method QNetworkConfiguration::Purpose QNetworkConfiguration::purpose()\n", true, &_init_f_purpose_c0, &_call_f_purpose_c0); - methods += new qt_gsi::GenericMethod ("state", "@brief Method QFlags QNetworkConfiguration::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QNetworkConfiguration::swap(QNetworkConfiguration &other)\n", false, &_init_f_swap_2813, &_call_f_swap_2813); - methods += new qt_gsi::GenericMethod ("type", "@brief Method QNetworkConfiguration::Type QNetworkConfiguration::type()\n", true, &_init_f_type_c0, &_call_f_type_c0); - return methods; -} - -gsi::Class decl_QNetworkConfiguration ("QtMultimedia", "QNetworkConfiguration", - methods_QNetworkConfiguration (), - "@qt\n@brief Binding of QNetworkConfiguration"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkConfiguration () { return decl_QNetworkConfiguration; } - -} - - -// Implementation of the enum wrapper class for QNetworkConfiguration::BearerType -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkConfiguration_BearerType_Enum ("QtMultimedia", "QNetworkConfiguration_BearerType", - gsi::enum_const ("BearerUnknown", QNetworkConfiguration::BearerUnknown, "@brief Enum constant QNetworkConfiguration::BearerUnknown") + - gsi::enum_const ("BearerEthernet", QNetworkConfiguration::BearerEthernet, "@brief Enum constant QNetworkConfiguration::BearerEthernet") + - gsi::enum_const ("BearerWLAN", QNetworkConfiguration::BearerWLAN, "@brief Enum constant QNetworkConfiguration::BearerWLAN") + - gsi::enum_const ("Bearer2G", QNetworkConfiguration::Bearer2G, "@brief Enum constant QNetworkConfiguration::Bearer2G") + - gsi::enum_const ("BearerCDMA2000", QNetworkConfiguration::BearerCDMA2000, "@brief Enum constant QNetworkConfiguration::BearerCDMA2000") + - gsi::enum_const ("BearerWCDMA", QNetworkConfiguration::BearerWCDMA, "@brief Enum constant QNetworkConfiguration::BearerWCDMA") + - gsi::enum_const ("BearerHSPA", QNetworkConfiguration::BearerHSPA, "@brief Enum constant QNetworkConfiguration::BearerHSPA") + - gsi::enum_const ("BearerBluetooth", QNetworkConfiguration::BearerBluetooth, "@brief Enum constant QNetworkConfiguration::BearerBluetooth") + - gsi::enum_const ("BearerWiMAX", QNetworkConfiguration::BearerWiMAX, "@brief Enum constant QNetworkConfiguration::BearerWiMAX") + - gsi::enum_const ("BearerEVDO", QNetworkConfiguration::BearerEVDO, "@brief Enum constant QNetworkConfiguration::BearerEVDO") + - gsi::enum_const ("BearerLTE", QNetworkConfiguration::BearerLTE, "@brief Enum constant QNetworkConfiguration::BearerLTE") + - gsi::enum_const ("Bearer3G", QNetworkConfiguration::Bearer3G, "@brief Enum constant QNetworkConfiguration::Bearer3G") + - gsi::enum_const ("Bearer4G", QNetworkConfiguration::Bearer4G, "@brief Enum constant QNetworkConfiguration::Bearer4G"), - "@qt\n@brief This class represents the QNetworkConfiguration::BearerType enum"); - -static gsi::QFlagsClass decl_QNetworkConfiguration_BearerType_Enums ("QtMultimedia", "QNetworkConfiguration_QFlags_BearerType", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkConfiguration_BearerType_Enum_in_parent (decl_QNetworkConfiguration_BearerType_Enum.defs ()); -static gsi::ClassExt decl_QNetworkConfiguration_BearerType_Enum_as_child (decl_QNetworkConfiguration_BearerType_Enum, "BearerType"); -static gsi::ClassExt decl_QNetworkConfiguration_BearerType_Enums_as_child (decl_QNetworkConfiguration_BearerType_Enums, "QFlags_BearerType"); - -} - - -// Implementation of the enum wrapper class for QNetworkConfiguration::Purpose -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkConfiguration_Purpose_Enum ("QtMultimedia", "QNetworkConfiguration_Purpose", - gsi::enum_const ("UnknownPurpose", QNetworkConfiguration::UnknownPurpose, "@brief Enum constant QNetworkConfiguration::UnknownPurpose") + - gsi::enum_const ("PublicPurpose", QNetworkConfiguration::PublicPurpose, "@brief Enum constant QNetworkConfiguration::PublicPurpose") + - gsi::enum_const ("PrivatePurpose", QNetworkConfiguration::PrivatePurpose, "@brief Enum constant QNetworkConfiguration::PrivatePurpose") + - gsi::enum_const ("ServiceSpecificPurpose", QNetworkConfiguration::ServiceSpecificPurpose, "@brief Enum constant QNetworkConfiguration::ServiceSpecificPurpose"), - "@qt\n@brief This class represents the QNetworkConfiguration::Purpose enum"); - -static gsi::QFlagsClass decl_QNetworkConfiguration_Purpose_Enums ("QtMultimedia", "QNetworkConfiguration_QFlags_Purpose", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkConfiguration_Purpose_Enum_in_parent (decl_QNetworkConfiguration_Purpose_Enum.defs ()); -static gsi::ClassExt decl_QNetworkConfiguration_Purpose_Enum_as_child (decl_QNetworkConfiguration_Purpose_Enum, "Purpose"); -static gsi::ClassExt decl_QNetworkConfiguration_Purpose_Enums_as_child (decl_QNetworkConfiguration_Purpose_Enums, "QFlags_Purpose"); - -} - - -// Implementation of the enum wrapper class for QNetworkConfiguration::StateFlag -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkConfiguration_StateFlag_Enum ("QtMultimedia", "QNetworkConfiguration_StateFlag", - gsi::enum_const ("Undefined", QNetworkConfiguration::Undefined, "@brief Enum constant QNetworkConfiguration::Undefined") + - gsi::enum_const ("Defined", QNetworkConfiguration::Defined, "@brief Enum constant QNetworkConfiguration::Defined") + - gsi::enum_const ("Discovered", QNetworkConfiguration::Discovered, "@brief Enum constant QNetworkConfiguration::Discovered") + - gsi::enum_const ("Active", QNetworkConfiguration::Active, "@brief Enum constant QNetworkConfiguration::Active"), - "@qt\n@brief This class represents the QNetworkConfiguration::StateFlag enum"); - -static gsi::QFlagsClass decl_QNetworkConfiguration_StateFlag_Enums ("QtMultimedia", "QNetworkConfiguration_QFlags_StateFlag", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkConfiguration_StateFlag_Enum_in_parent (decl_QNetworkConfiguration_StateFlag_Enum.defs ()); -static gsi::ClassExt decl_QNetworkConfiguration_StateFlag_Enum_as_child (decl_QNetworkConfiguration_StateFlag_Enum, "StateFlag"); -static gsi::ClassExt decl_QNetworkConfiguration_StateFlag_Enums_as_child (decl_QNetworkConfiguration_StateFlag_Enums, "QFlags_StateFlag"); - -} - - -// Implementation of the enum wrapper class for QNetworkConfiguration::Type -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkConfiguration_Type_Enum ("QtMultimedia", "QNetworkConfiguration_Type", - gsi::enum_const ("InternetAccessPoint", QNetworkConfiguration::InternetAccessPoint, "@brief Enum constant QNetworkConfiguration::InternetAccessPoint") + - gsi::enum_const ("ServiceNetwork", QNetworkConfiguration::ServiceNetwork, "@brief Enum constant QNetworkConfiguration::ServiceNetwork") + - gsi::enum_const ("UserChoice", QNetworkConfiguration::UserChoice, "@brief Enum constant QNetworkConfiguration::UserChoice") + - gsi::enum_const ("Invalid", QNetworkConfiguration::Invalid, "@brief Enum constant QNetworkConfiguration::Invalid"), - "@qt\n@brief This class represents the QNetworkConfiguration::Type enum"); - -static gsi::QFlagsClass decl_QNetworkConfiguration_Type_Enums ("QtMultimedia", "QNetworkConfiguration_QFlags_Type", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkConfiguration_Type_Enum_in_parent (decl_QNetworkConfiguration_Type_Enum.defs ()); -static gsi::ClassExt decl_QNetworkConfiguration_Type_Enum_as_child (decl_QNetworkConfiguration_Type_Enum, "Type"); -static gsi::ClassExt decl_QNetworkConfiguration_Type_Enums_as_child (decl_QNetworkConfiguration_Type_Enums, "QFlags_Type"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkConfigurationManager.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkConfigurationManager.cc deleted file mode 100644 index 37aad7633..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkConfigurationManager.cc +++ /dev/null @@ -1,810 +0,0 @@ - -/* - - 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 gsiDeclQNetworkConfigurationManager.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkConfigurationManager - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QNetworkConfigurationManager::staticMetaObject); -} - - -// QList QNetworkConfigurationManager::allConfigurations(QFlags flags) - - -static void _init_f_allConfigurations_c4334 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("flags", true, "0"); - decl->add_arg > (argspec_0); - decl->set_return > (); -} - -static void _call_f_allConfigurations_c4334 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(0); - ret.write > ((QList)((QNetworkConfigurationManager *)cls)->allConfigurations (arg1)); -} - - -// QFlags QNetworkConfigurationManager::capabilities() - - -static void _init_f_capabilities_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_capabilities_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QFlags)((QNetworkConfigurationManager *)cls)->capabilities ()); -} - - -// QNetworkConfiguration QNetworkConfigurationManager::configurationFromIdentifier(const QString &identifier) - - -static void _init_f_configurationFromIdentifier_c2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("identifier"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_configurationFromIdentifier_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QNetworkConfiguration)((QNetworkConfigurationManager *)cls)->configurationFromIdentifier (arg1)); -} - - -// QNetworkConfiguration QNetworkConfigurationManager::defaultConfiguration() - - -static void _init_f_defaultConfiguration_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_defaultConfiguration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkConfiguration)((QNetworkConfigurationManager *)cls)->defaultConfiguration ()); -} - - -// bool QNetworkConfigurationManager::isOnline() - - -static void _init_f_isOnline_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isOnline_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkConfigurationManager *)cls)->isOnline ()); -} - - -// void QNetworkConfigurationManager::updateConfigurations() - - -static void _init_f_updateConfigurations_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_updateConfigurations_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkConfigurationManager *)cls)->updateConfigurations (); -} - - -// static QString QNetworkConfigurationManager::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkConfigurationManager::tr (arg1, arg2, arg3)); -} - - -// static QString QNetworkConfigurationManager::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkConfigurationManager::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkConfigurationManager () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("allConfigurations", "@brief Method QList QNetworkConfigurationManager::allConfigurations(QFlags flags)\n", true, &_init_f_allConfigurations_c4334, &_call_f_allConfigurations_c4334); - methods += new qt_gsi::GenericMethod ("capabilities", "@brief Method QFlags QNetworkConfigurationManager::capabilities()\n", true, &_init_f_capabilities_c0, &_call_f_capabilities_c0); - methods += new qt_gsi::GenericMethod ("configurationFromIdentifier", "@brief Method QNetworkConfiguration QNetworkConfigurationManager::configurationFromIdentifier(const QString &identifier)\n", true, &_init_f_configurationFromIdentifier_c2025, &_call_f_configurationFromIdentifier_c2025); - methods += new qt_gsi::GenericMethod ("defaultConfiguration", "@brief Method QNetworkConfiguration QNetworkConfigurationManager::defaultConfiguration()\n", true, &_init_f_defaultConfiguration_c0, &_call_f_defaultConfiguration_c0); - methods += new qt_gsi::GenericMethod ("isOnline?", "@brief Method bool QNetworkConfigurationManager::isOnline()\n", true, &_init_f_isOnline_c0, &_call_f_isOnline_c0); - methods += new qt_gsi::GenericMethod ("updateConfigurations", "@brief Method void QNetworkConfigurationManager::updateConfigurations()\n", false, &_init_f_updateConfigurations_0, &_call_f_updateConfigurations_0); - methods += gsi::qt_signal ("configurationAdded(const QNetworkConfiguration &)", "configurationAdded", gsi::arg("config"), "@brief Signal declaration for QNetworkConfigurationManager::configurationAdded(const QNetworkConfiguration &config)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("configurationChanged(const QNetworkConfiguration &)", "configurationChanged", gsi::arg("config"), "@brief Signal declaration for QNetworkConfigurationManager::configurationChanged(const QNetworkConfiguration &config)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("configurationRemoved(const QNetworkConfiguration &)", "configurationRemoved", gsi::arg("config"), "@brief Signal declaration for QNetworkConfigurationManager::configurationRemoved(const QNetworkConfiguration &config)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QNetworkConfigurationManager::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("onlineStateChanged(bool)", "onlineStateChanged", gsi::arg("isOnline"), "@brief Signal declaration for QNetworkConfigurationManager::onlineStateChanged(bool isOnline)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("updateCompleted()", "updateCompleted", "@brief Signal declaration for QNetworkConfigurationManager::updateCompleted()\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkConfigurationManager::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 QNetworkConfigurationManager::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QNetworkConfigurationManager (qtdecl_QObject (), "QtMultimedia", "QNetworkConfigurationManager_Native", - methods_QNetworkConfigurationManager (), - "@hide\n@alias QNetworkConfigurationManager"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkConfigurationManager () { return decl_QNetworkConfigurationManager; } - -} - - -class QNetworkConfigurationManager_Adaptor : public QNetworkConfigurationManager, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QNetworkConfigurationManager_Adaptor(); - - // [adaptor ctor] QNetworkConfigurationManager::QNetworkConfigurationManager(QObject *parent) - QNetworkConfigurationManager_Adaptor() : QNetworkConfigurationManager() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QNetworkConfigurationManager::QNetworkConfigurationManager(QObject *parent) - QNetworkConfigurationManager_Adaptor(QObject *parent) : QNetworkConfigurationManager(parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] bool QNetworkConfigurationManager::isSignalConnected(const QMetaMethod &signal) - bool fp_QNetworkConfigurationManager_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QNetworkConfigurationManager::isSignalConnected(signal); - } - - // [expose] int QNetworkConfigurationManager::receivers(const char *signal) - int fp_QNetworkConfigurationManager_receivers_c1731 (const char *signal) const { - return QNetworkConfigurationManager::receivers(signal); - } - - // [expose] QObject *QNetworkConfigurationManager::sender() - QObject * fp_QNetworkConfigurationManager_sender_c0 () const { - return QNetworkConfigurationManager::sender(); - } - - // [expose] int QNetworkConfigurationManager::senderSignalIndex() - int fp_QNetworkConfigurationManager_senderSignalIndex_c0 () const { - return QNetworkConfigurationManager::senderSignalIndex(); - } - - // [emitter impl] void QNetworkConfigurationManager::configurationAdded(const QNetworkConfiguration &config) - void emitter_QNetworkConfigurationManager_configurationAdded_3508(const QNetworkConfiguration &config) - { - emit QNetworkConfigurationManager::configurationAdded(config); - } - - // [emitter impl] void QNetworkConfigurationManager::configurationChanged(const QNetworkConfiguration &config) - void emitter_QNetworkConfigurationManager_configurationChanged_3508(const QNetworkConfiguration &config) - { - emit QNetworkConfigurationManager::configurationChanged(config); - } - - // [emitter impl] void QNetworkConfigurationManager::configurationRemoved(const QNetworkConfiguration &config) - void emitter_QNetworkConfigurationManager_configurationRemoved_3508(const QNetworkConfiguration &config) - { - emit QNetworkConfigurationManager::configurationRemoved(config); - } - - // [emitter impl] void QNetworkConfigurationManager::destroyed(QObject *) - void emitter_QNetworkConfigurationManager_destroyed_1302(QObject *arg1) - { - emit QNetworkConfigurationManager::destroyed(arg1); - } - - // [adaptor impl] bool QNetworkConfigurationManager::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QNetworkConfigurationManager::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QNetworkConfigurationManager_Adaptor::cbs_event_1217_0, arg1); - } else { - return QNetworkConfigurationManager::event(arg1); - } - } - - // [adaptor impl] bool QNetworkConfigurationManager::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QNetworkConfigurationManager::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QNetworkConfigurationManager_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QNetworkConfigurationManager::eventFilter(arg1, arg2); - } - } - - // [emitter impl] void QNetworkConfigurationManager::onlineStateChanged(bool isOnline) - void emitter_QNetworkConfigurationManager_onlineStateChanged_864(bool isOnline) - { - emit QNetworkConfigurationManager::onlineStateChanged(isOnline); - } - - // [emitter impl] void QNetworkConfigurationManager::updateCompleted() - void emitter_QNetworkConfigurationManager_updateCompleted_0() - { - emit QNetworkConfigurationManager::updateCompleted(); - } - - // [adaptor impl] void QNetworkConfigurationManager::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QNetworkConfigurationManager::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QNetworkConfigurationManager_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QNetworkConfigurationManager::childEvent(arg1); - } - } - - // [adaptor impl] void QNetworkConfigurationManager::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QNetworkConfigurationManager::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QNetworkConfigurationManager_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QNetworkConfigurationManager::customEvent(arg1); - } - } - - // [adaptor impl] void QNetworkConfigurationManager::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QNetworkConfigurationManager::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QNetworkConfigurationManager_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QNetworkConfigurationManager::disconnectNotify(signal); - } - } - - // [adaptor impl] void QNetworkConfigurationManager::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QNetworkConfigurationManager::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QNetworkConfigurationManager_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QNetworkConfigurationManager::timerEvent(arg1); - } - } - - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QNetworkConfigurationManager_Adaptor::~QNetworkConfigurationManager_Adaptor() { } - -// Constructor QNetworkConfigurationManager::QNetworkConfigurationManager(QObject *parent) (adaptor class) - -static void _init_ctor_QNetworkConfigurationManager_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkConfigurationManager_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QNetworkConfigurationManager_Adaptor (arg1)); -} - - -// void QNetworkConfigurationManager::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkConfigurationManager_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkConfigurationManager_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// emitter void QNetworkConfigurationManager::configurationAdded(const QNetworkConfiguration &config) - -static void _init_emitter_configurationAdded_3508 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("config"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_configurationAdded_3508 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_configurationAdded_3508 (arg1); -} - - -// emitter void QNetworkConfigurationManager::configurationChanged(const QNetworkConfiguration &config) - -static void _init_emitter_configurationChanged_3508 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("config"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_configurationChanged_3508 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_configurationChanged_3508 (arg1); -} - - -// emitter void QNetworkConfigurationManager::configurationRemoved(const QNetworkConfiguration &config) - -static void _init_emitter_configurationRemoved_3508 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("config"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_configurationRemoved_3508 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_configurationRemoved_3508 (arg1); -} - - -// void QNetworkConfigurationManager::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkConfigurationManager_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkConfigurationManager_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// emitter void QNetworkConfigurationManager::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_destroyed_1302 (arg1); -} - - -// void QNetworkConfigurationManager::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkConfigurationManager_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkConfigurationManager_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// bool QNetworkConfigurationManager::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QNetworkConfigurationManager_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkConfigurationManager_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QNetworkConfigurationManager::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QNetworkConfigurationManager_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkConfigurationManager_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// exposed bool QNetworkConfigurationManager::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QNetworkConfigurationManager_Adaptor *)cls)->fp_QNetworkConfigurationManager_isSignalConnected_c2394 (arg1)); -} - - -// emitter void QNetworkConfigurationManager::onlineStateChanged(bool isOnline) - -static void _init_emitter_onlineStateChanged_864 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("isOnline"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_onlineStateChanged_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - bool arg1 = args.read (heap); - ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_onlineStateChanged_864 (arg1); -} - - -// exposed int QNetworkConfigurationManager::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QNetworkConfigurationManager_Adaptor *)cls)->fp_QNetworkConfigurationManager_receivers_c1731 (arg1)); -} - - -// exposed QObject *QNetworkConfigurationManager::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QNetworkConfigurationManager_Adaptor *)cls)->fp_QNetworkConfigurationManager_sender_c0 ()); -} - - -// exposed int QNetworkConfigurationManager::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkConfigurationManager_Adaptor *)cls)->fp_QNetworkConfigurationManager_senderSignalIndex_c0 ()); -} - - -// void QNetworkConfigurationManager::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkConfigurationManager_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkConfigurationManager_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -// emitter void QNetworkConfigurationManager::updateCompleted() - -static void _init_emitter_updateCompleted_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_emitter_updateCompleted_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_updateCompleted_0 (); -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QNetworkConfigurationManager (); - -static gsi::Methods methods_QNetworkConfigurationManager_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkConfigurationManager::QNetworkConfigurationManager(QObject *parent)\nThis method creates an object of class QNetworkConfigurationManager.", &_init_ctor_QNetworkConfigurationManager_Adaptor_1302, &_call_ctor_QNetworkConfigurationManager_Adaptor_1302); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QNetworkConfigurationManager::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("emit_configurationAdded", "@brief Emitter for signal void QNetworkConfigurationManager::configurationAdded(const QNetworkConfiguration &config)\nCall this method to emit this signal.", false, &_init_emitter_configurationAdded_3508, &_call_emitter_configurationAdded_3508); - methods += new qt_gsi::GenericMethod ("emit_configurationChanged", "@brief Emitter for signal void QNetworkConfigurationManager::configurationChanged(const QNetworkConfiguration &config)\nCall this method to emit this signal.", false, &_init_emitter_configurationChanged_3508, &_call_emitter_configurationChanged_3508); - methods += new qt_gsi::GenericMethod ("emit_configurationRemoved", "@brief Emitter for signal void QNetworkConfigurationManager::configurationRemoved(const QNetworkConfiguration &config)\nCall this method to emit this signal.", false, &_init_emitter_configurationRemoved_3508, &_call_emitter_configurationRemoved_3508); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QNetworkConfigurationManager::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QNetworkConfigurationManager::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QNetworkConfigurationManager::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QNetworkConfigurationManager::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QNetworkConfigurationManager::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QNetworkConfigurationManager::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("emit_onlineStateChanged", "@brief Emitter for signal void QNetworkConfigurationManager::onlineStateChanged(bool isOnline)\nCall this method to emit this signal.", false, &_init_emitter_onlineStateChanged_864, &_call_emitter_onlineStateChanged_864); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QNetworkConfigurationManager::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QNetworkConfigurationManager::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QNetworkConfigurationManager::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QNetworkConfigurationManager::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("emit_updateCompleted", "@brief Emitter for signal void QNetworkConfigurationManager::updateCompleted()\nCall this method to emit this signal.", false, &_init_emitter_updateCompleted_0, &_call_emitter_updateCompleted_0); - return methods; -} - -gsi::Class decl_QNetworkConfigurationManager_Adaptor (qtdecl_QNetworkConfigurationManager (), "QtMultimedia", "QNetworkConfigurationManager", - methods_QNetworkConfigurationManager_Adaptor (), - "@qt\n@brief Binding of QNetworkConfigurationManager"); - -} - - -// Implementation of the enum wrapper class for QNetworkConfigurationManager::Capability -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkConfigurationManager_Capability_Enum ("QtMultimedia", "QNetworkConfigurationManager_Capability", - gsi::enum_const ("CanStartAndStopInterfaces", QNetworkConfigurationManager::CanStartAndStopInterfaces, "@brief Enum constant QNetworkConfigurationManager::CanStartAndStopInterfaces") + - gsi::enum_const ("DirectConnectionRouting", QNetworkConfigurationManager::DirectConnectionRouting, "@brief Enum constant QNetworkConfigurationManager::DirectConnectionRouting") + - gsi::enum_const ("SystemSessionSupport", QNetworkConfigurationManager::SystemSessionSupport, "@brief Enum constant QNetworkConfigurationManager::SystemSessionSupport") + - gsi::enum_const ("ApplicationLevelRoaming", QNetworkConfigurationManager::ApplicationLevelRoaming, "@brief Enum constant QNetworkConfigurationManager::ApplicationLevelRoaming") + - gsi::enum_const ("ForcedRoaming", QNetworkConfigurationManager::ForcedRoaming, "@brief Enum constant QNetworkConfigurationManager::ForcedRoaming") + - gsi::enum_const ("DataStatistics", QNetworkConfigurationManager::DataStatistics, "@brief Enum constant QNetworkConfigurationManager::DataStatistics") + - gsi::enum_const ("NetworkSessionRequired", QNetworkConfigurationManager::NetworkSessionRequired, "@brief Enum constant QNetworkConfigurationManager::NetworkSessionRequired"), - "@qt\n@brief This class represents the QNetworkConfigurationManager::Capability enum"); - -static gsi::QFlagsClass decl_QNetworkConfigurationManager_Capability_Enums ("QtMultimedia", "QNetworkConfigurationManager_QFlags_Capability", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkConfigurationManager_Capability_Enum_in_parent (decl_QNetworkConfigurationManager_Capability_Enum.defs ()); -static gsi::ClassExt decl_QNetworkConfigurationManager_Capability_Enum_as_child (decl_QNetworkConfigurationManager_Capability_Enum, "Capability"); -static gsi::ClassExt decl_QNetworkConfigurationManager_Capability_Enums_as_child (decl_QNetworkConfigurationManager_Capability_Enums, "QFlags_Capability"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCookie.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCookie.cc deleted file mode 100644 index bb9d59896..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCookie.cc +++ /dev/null @@ -1,558 +0,0 @@ - -/* - - 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 gsiDeclQNetworkCookie.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkCookie - -// Constructor QNetworkCookie::QNetworkCookie(const QByteArray &name, const QByteArray &value) - - -static void _init_ctor_QNetworkCookie_4510 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name", true, "QByteArray()"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value", true, "QByteArray()"); - decl->add_arg (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkCookie_4510 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - ret.write (new QNetworkCookie (arg1, arg2)); -} - - -// Constructor QNetworkCookie::QNetworkCookie(const QNetworkCookie &other) - - -static void _init_ctor_QNetworkCookie_2742 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkCookie_2742 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write (new QNetworkCookie (arg1)); -} - - -// QString QNetworkCookie::domain() - - -static void _init_f_domain_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_domain_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkCookie *)cls)->domain ()); -} - - -// QDateTime QNetworkCookie::expirationDate() - - -static void _init_f_expirationDate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_expirationDate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QDateTime)((QNetworkCookie *)cls)->expirationDate ()); -} - - -// bool QNetworkCookie::hasSameIdentifier(const QNetworkCookie &other) - - -static void _init_f_hasSameIdentifier_c2742 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_hasSameIdentifier_c2742 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookie *)cls)->hasSameIdentifier (arg1)); -} - - -// bool QNetworkCookie::isHttpOnly() - - -static void _init_f_isHttpOnly_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isHttpOnly_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkCookie *)cls)->isHttpOnly ()); -} - - -// bool QNetworkCookie::isSecure() - - -static void _init_f_isSecure_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isSecure_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkCookie *)cls)->isSecure ()); -} - - -// bool QNetworkCookie::isSessionCookie() - - -static void _init_f_isSessionCookie_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isSessionCookie_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkCookie *)cls)->isSessionCookie ()); -} - - -// QByteArray QNetworkCookie::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QNetworkCookie *)cls)->name ()); -} - - -// void QNetworkCookie::normalize(const QUrl &url) - - -static void _init_f_normalize_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_normalize_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->normalize (arg1); -} - - -// bool QNetworkCookie::operator!=(const QNetworkCookie &other) - - -static void _init_f_operator_excl__eq__c2742 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2742 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookie *)cls)->operator!= (arg1)); -} - - -// QNetworkCookie &QNetworkCookie::operator=(const QNetworkCookie &other) - - -static void _init_f_operator_eq__2742 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2742 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((QNetworkCookie &)((QNetworkCookie *)cls)->operator= (arg1)); -} - - -// bool QNetworkCookie::operator==(const QNetworkCookie &other) - - -static void _init_f_operator_eq__eq__c2742 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2742 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookie *)cls)->operator== (arg1)); -} - - -// QString QNetworkCookie::path() - - -static void _init_f_path_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_path_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkCookie *)cls)->path ()); -} - - -// void QNetworkCookie::setDomain(const QString &domain) - - -static void _init_f_setDomain_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("domain"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setDomain_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->setDomain (arg1); -} - - -// void QNetworkCookie::setExpirationDate(const QDateTime &date) - - -static void _init_f_setExpirationDate_2175 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("date"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setExpirationDate_2175 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->setExpirationDate (arg1); -} - - -// void QNetworkCookie::setHttpOnly(bool enable) - - -static void _init_f_setHttpOnly_864 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("enable"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setHttpOnly_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - bool arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->setHttpOnly (arg1); -} - - -// void QNetworkCookie::setName(const QByteArray &cookieName) - - -static void _init_f_setName_2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookieName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setName_2309 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->setName (arg1); -} - - -// void QNetworkCookie::setPath(const QString &path) - - -static void _init_f_setPath_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("path"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->setPath (arg1); -} - - -// void QNetworkCookie::setSecure(bool enable) - - -static void _init_f_setSecure_864 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("enable"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setSecure_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - bool arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->setSecure (arg1); -} - - -// void QNetworkCookie::setValue(const QByteArray &value) - - -static void _init_f_setValue_2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("value"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setValue_2309 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->setValue (arg1); -} - - -// void QNetworkCookie::swap(QNetworkCookie &other) - - -static void _init_f_swap_2047 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2047 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkCookie &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookie *)cls)->swap (arg1); -} - - -// QByteArray QNetworkCookie::toRawForm(QNetworkCookie::RawForm form) - - -static void _init_f_toRawForm_c2683 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("form", true, "QNetworkCookie::Full"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_toRawForm_c2683 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkCookie::Full)); - ret.write ((QByteArray)((QNetworkCookie *)cls)->toRawForm (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// QByteArray QNetworkCookie::value() - - -static void _init_f_value_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_value_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QNetworkCookie *)cls)->value ()); -} - - -// static QList QNetworkCookie::parseCookies(const QByteArray &cookieString) - - -static void _init_f_parseCookies_2309 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookieString"); - decl->add_arg (argspec_0); - decl->set_return > (); -} - -static void _call_f_parseCookies_2309 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - ret.write > ((QList)QNetworkCookie::parseCookies (arg1)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkCookie () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkCookie::QNetworkCookie(const QByteArray &name, const QByteArray &value)\nThis method creates an object of class QNetworkCookie.", &_init_ctor_QNetworkCookie_4510, &_call_ctor_QNetworkCookie_4510); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkCookie::QNetworkCookie(const QNetworkCookie &other)\nThis method creates an object of class QNetworkCookie.", &_init_ctor_QNetworkCookie_2742, &_call_ctor_QNetworkCookie_2742); - methods += new qt_gsi::GenericMethod (":domain", "@brief Method QString QNetworkCookie::domain()\n", true, &_init_f_domain_c0, &_call_f_domain_c0); - methods += new qt_gsi::GenericMethod (":expirationDate", "@brief Method QDateTime QNetworkCookie::expirationDate()\n", true, &_init_f_expirationDate_c0, &_call_f_expirationDate_c0); - methods += new qt_gsi::GenericMethod ("hasSameIdentifier", "@brief Method bool QNetworkCookie::hasSameIdentifier(const QNetworkCookie &other)\n", true, &_init_f_hasSameIdentifier_c2742, &_call_f_hasSameIdentifier_c2742); - methods += new qt_gsi::GenericMethod ("isHttpOnly?|:httpOnly", "@brief Method bool QNetworkCookie::isHttpOnly()\n", true, &_init_f_isHttpOnly_c0, &_call_f_isHttpOnly_c0); - methods += new qt_gsi::GenericMethod ("isSecure?|:secure", "@brief Method bool QNetworkCookie::isSecure()\n", true, &_init_f_isSecure_c0, &_call_f_isSecure_c0); - methods += new qt_gsi::GenericMethod ("isSessionCookie?", "@brief Method bool QNetworkCookie::isSessionCookie()\n", true, &_init_f_isSessionCookie_c0, &_call_f_isSessionCookie_c0); - methods += new qt_gsi::GenericMethod (":name", "@brief Method QByteArray QNetworkCookie::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("normalize", "@brief Method void QNetworkCookie::normalize(const QUrl &url)\n", false, &_init_f_normalize_1701, &_call_f_normalize_1701); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QNetworkCookie::operator!=(const QNetworkCookie &other)\n", true, &_init_f_operator_excl__eq__c2742, &_call_f_operator_excl__eq__c2742); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QNetworkCookie &QNetworkCookie::operator=(const QNetworkCookie &other)\n", false, &_init_f_operator_eq__2742, &_call_f_operator_eq__2742); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QNetworkCookie::operator==(const QNetworkCookie &other)\n", true, &_init_f_operator_eq__eq__c2742, &_call_f_operator_eq__eq__c2742); - methods += new qt_gsi::GenericMethod (":path", "@brief Method QString QNetworkCookie::path()\n", true, &_init_f_path_c0, &_call_f_path_c0); - methods += new qt_gsi::GenericMethod ("setDomain|domain=", "@brief Method void QNetworkCookie::setDomain(const QString &domain)\n", false, &_init_f_setDomain_2025, &_call_f_setDomain_2025); - methods += new qt_gsi::GenericMethod ("setExpirationDate|expirationDate=", "@brief Method void QNetworkCookie::setExpirationDate(const QDateTime &date)\n", false, &_init_f_setExpirationDate_2175, &_call_f_setExpirationDate_2175); - methods += new qt_gsi::GenericMethod ("setHttpOnly|httpOnly=", "@brief Method void QNetworkCookie::setHttpOnly(bool enable)\n", false, &_init_f_setHttpOnly_864, &_call_f_setHttpOnly_864); - methods += new qt_gsi::GenericMethod ("setName|name=", "@brief Method void QNetworkCookie::setName(const QByteArray &cookieName)\n", false, &_init_f_setName_2309, &_call_f_setName_2309); - methods += new qt_gsi::GenericMethod ("setPath|path=", "@brief Method void QNetworkCookie::setPath(const QString &path)\n", false, &_init_f_setPath_2025, &_call_f_setPath_2025); - methods += new qt_gsi::GenericMethod ("setSecure|secure=", "@brief Method void QNetworkCookie::setSecure(bool enable)\n", false, &_init_f_setSecure_864, &_call_f_setSecure_864); - methods += new qt_gsi::GenericMethod ("setValue|value=", "@brief Method void QNetworkCookie::setValue(const QByteArray &value)\n", false, &_init_f_setValue_2309, &_call_f_setValue_2309); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QNetworkCookie::swap(QNetworkCookie &other)\n", false, &_init_f_swap_2047, &_call_f_swap_2047); - methods += new qt_gsi::GenericMethod ("toRawForm", "@brief Method QByteArray QNetworkCookie::toRawForm(QNetworkCookie::RawForm form)\n", true, &_init_f_toRawForm_c2683, &_call_f_toRawForm_c2683); - methods += new qt_gsi::GenericMethod (":value", "@brief Method QByteArray QNetworkCookie::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); - methods += new qt_gsi::GenericStaticMethod ("parseCookies", "@brief Static method QList QNetworkCookie::parseCookies(const QByteArray &cookieString)\nThis method is static and can be called without an instance.", &_init_f_parseCookies_2309, &_call_f_parseCookies_2309); - return methods; -} - -gsi::Class decl_QNetworkCookie ("QtMultimedia", "QNetworkCookie", - methods_QNetworkCookie (), - "@qt\n@brief Binding of QNetworkCookie"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkCookie () { return decl_QNetworkCookie; } - -} - - -// Implementation of the enum wrapper class for QNetworkCookie::RawForm -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkCookie_RawForm_Enum ("QtMultimedia", "QNetworkCookie_RawForm", - gsi::enum_const ("NameAndValueOnly", QNetworkCookie::NameAndValueOnly, "@brief Enum constant QNetworkCookie::NameAndValueOnly") + - gsi::enum_const ("Full", QNetworkCookie::Full, "@brief Enum constant QNetworkCookie::Full"), - "@qt\n@brief This class represents the QNetworkCookie::RawForm enum"); - -static gsi::QFlagsClass decl_QNetworkCookie_RawForm_Enums ("QtMultimedia", "QNetworkCookie_QFlags_RawForm", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkCookie_RawForm_Enum_in_parent (decl_QNetworkCookie_RawForm_Enum.defs ()); -static gsi::ClassExt decl_QNetworkCookie_RawForm_Enum_as_child (decl_QNetworkCookie_RawForm_Enum, "RawForm"); -static gsi::ClassExt decl_QNetworkCookie_RawForm_Enums_as_child (decl_QNetworkCookie_RawForm_Enums, "QFlags_RawForm"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCookieJar.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCookieJar.cc deleted file mode 100644 index bf5a87d2b..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkCookieJar.cc +++ /dev/null @@ -1,955 +0,0 @@ - -/* - - 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 gsiDeclQNetworkCookieJar.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkCookieJar - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QNetworkCookieJar::staticMetaObject); -} - - -// QList QNetworkCookieJar::cookiesForUrl(const QUrl &url) - - -static void _init_f_cookiesForUrl_c1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return > (); -} - -static void _call_f_cookiesForUrl_c1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write > ((QList)((QNetworkCookieJar *)cls)->cookiesForUrl (arg1)); -} - - -// bool QNetworkCookieJar::deleteCookie(const QNetworkCookie &cookie) - - -static void _init_f_deleteCookie_2742 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookie"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_deleteCookie_2742 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar *)cls)->deleteCookie (arg1)); -} - - -// bool QNetworkCookieJar::insertCookie(const QNetworkCookie &cookie) - - -static void _init_f_insertCookie_2742 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookie"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_insertCookie_2742 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar *)cls)->insertCookie (arg1)); -} - - -// bool QNetworkCookieJar::setCookiesFromUrl(const QList &cookieList, const QUrl &url) - - -static void _init_f_setCookiesFromUrl_4950 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookieList"); - decl->add_arg & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("url"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setCookiesFromUrl_4950 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QUrl &arg2 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar *)cls)->setCookiesFromUrl (arg1, arg2)); -} - - -// bool QNetworkCookieJar::updateCookie(const QNetworkCookie &cookie) - - -static void _init_f_updateCookie_2742 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookie"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_updateCookie_2742 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar *)cls)->updateCookie (arg1)); -} - - -// static QString QNetworkCookieJar::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkCookieJar::tr (arg1, arg2, arg3)); -} - - -// static QString QNetworkCookieJar::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkCookieJar::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkCookieJar () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("cookiesForUrl", "@brief Method QList QNetworkCookieJar::cookiesForUrl(const QUrl &url)\n", true, &_init_f_cookiesForUrl_c1701, &_call_f_cookiesForUrl_c1701); - methods += new qt_gsi::GenericMethod ("deleteCookie", "@brief Method bool QNetworkCookieJar::deleteCookie(const QNetworkCookie &cookie)\n", false, &_init_f_deleteCookie_2742, &_call_f_deleteCookie_2742); - methods += new qt_gsi::GenericMethod ("insertCookie", "@brief Method bool QNetworkCookieJar::insertCookie(const QNetworkCookie &cookie)\n", false, &_init_f_insertCookie_2742, &_call_f_insertCookie_2742); - methods += new qt_gsi::GenericMethod ("setCookiesFromUrl", "@brief Method bool QNetworkCookieJar::setCookiesFromUrl(const QList &cookieList, const QUrl &url)\n", false, &_init_f_setCookiesFromUrl_4950, &_call_f_setCookiesFromUrl_4950); - methods += new qt_gsi::GenericMethod ("updateCookie", "@brief Method bool QNetworkCookieJar::updateCookie(const QNetworkCookie &cookie)\n", false, &_init_f_updateCookie_2742, &_call_f_updateCookie_2742); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QNetworkCookieJar::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkCookieJar::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 QNetworkCookieJar::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QNetworkCookieJar (qtdecl_QObject (), "QtMultimedia", "QNetworkCookieJar_Native", - methods_QNetworkCookieJar (), - "@hide\n@alias QNetworkCookieJar"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkCookieJar () { return decl_QNetworkCookieJar; } - -} - - -class QNetworkCookieJar_Adaptor : public QNetworkCookieJar, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QNetworkCookieJar_Adaptor(); - - // [adaptor ctor] QNetworkCookieJar::QNetworkCookieJar(QObject *parent) - QNetworkCookieJar_Adaptor() : QNetworkCookieJar() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QNetworkCookieJar::QNetworkCookieJar(QObject *parent) - QNetworkCookieJar_Adaptor(QObject *parent) : QNetworkCookieJar(parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] QList QNetworkCookieJar::allCookies() - QList fp_QNetworkCookieJar_allCookies_c0 () const { - return QNetworkCookieJar::allCookies(); - } - - // [expose] bool QNetworkCookieJar::isSignalConnected(const QMetaMethod &signal) - bool fp_QNetworkCookieJar_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QNetworkCookieJar::isSignalConnected(signal); - } - - // [expose] int QNetworkCookieJar::receivers(const char *signal) - int fp_QNetworkCookieJar_receivers_c1731 (const char *signal) const { - return QNetworkCookieJar::receivers(signal); - } - - // [expose] QObject *QNetworkCookieJar::sender() - QObject * fp_QNetworkCookieJar_sender_c0 () const { - return QNetworkCookieJar::sender(); - } - - // [expose] int QNetworkCookieJar::senderSignalIndex() - int fp_QNetworkCookieJar_senderSignalIndex_c0 () const { - return QNetworkCookieJar::senderSignalIndex(); - } - - // [expose] void QNetworkCookieJar::setAllCookies(const QList &cookieList) - void fp_QNetworkCookieJar_setAllCookies_3357 (const QList &cookieList) { - QNetworkCookieJar::setAllCookies(cookieList); - } - - // [adaptor impl] QList QNetworkCookieJar::cookiesForUrl(const QUrl &url) - QList cbs_cookiesForUrl_c1701_0(const QUrl &url) const - { - return QNetworkCookieJar::cookiesForUrl(url); - } - - virtual QList cookiesForUrl(const QUrl &url) const - { - if (cb_cookiesForUrl_c1701_0.can_issue()) { - return cb_cookiesForUrl_c1701_0.issue, const QUrl &>(&QNetworkCookieJar_Adaptor::cbs_cookiesForUrl_c1701_0, url); - } else { - return QNetworkCookieJar::cookiesForUrl(url); - } - } - - // [adaptor impl] bool QNetworkCookieJar::deleteCookie(const QNetworkCookie &cookie) - bool cbs_deleteCookie_2742_0(const QNetworkCookie &cookie) - { - return QNetworkCookieJar::deleteCookie(cookie); - } - - virtual bool deleteCookie(const QNetworkCookie &cookie) - { - if (cb_deleteCookie_2742_0.can_issue()) { - return cb_deleteCookie_2742_0.issue(&QNetworkCookieJar_Adaptor::cbs_deleteCookie_2742_0, cookie); - } else { - return QNetworkCookieJar::deleteCookie(cookie); - } - } - - // [emitter impl] void QNetworkCookieJar::destroyed(QObject *) - void emitter_QNetworkCookieJar_destroyed_1302(QObject *arg1) - { - emit QNetworkCookieJar::destroyed(arg1); - } - - // [adaptor impl] bool QNetworkCookieJar::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QNetworkCookieJar::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QNetworkCookieJar_Adaptor::cbs_event_1217_0, arg1); - } else { - return QNetworkCookieJar::event(arg1); - } - } - - // [adaptor impl] bool QNetworkCookieJar::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QNetworkCookieJar::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QNetworkCookieJar_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QNetworkCookieJar::eventFilter(arg1, arg2); - } - } - - // [adaptor impl] bool QNetworkCookieJar::insertCookie(const QNetworkCookie &cookie) - bool cbs_insertCookie_2742_0(const QNetworkCookie &cookie) - { - return QNetworkCookieJar::insertCookie(cookie); - } - - virtual bool insertCookie(const QNetworkCookie &cookie) - { - if (cb_insertCookie_2742_0.can_issue()) { - return cb_insertCookie_2742_0.issue(&QNetworkCookieJar_Adaptor::cbs_insertCookie_2742_0, cookie); - } else { - return QNetworkCookieJar::insertCookie(cookie); - } - } - - // [adaptor impl] bool QNetworkCookieJar::setCookiesFromUrl(const QList &cookieList, const QUrl &url) - bool cbs_setCookiesFromUrl_4950_0(const QList &cookieList, const QUrl &url) - { - return QNetworkCookieJar::setCookiesFromUrl(cookieList, url); - } - - virtual bool setCookiesFromUrl(const QList &cookieList, const QUrl &url) - { - if (cb_setCookiesFromUrl_4950_0.can_issue()) { - return cb_setCookiesFromUrl_4950_0.issue &, const QUrl &>(&QNetworkCookieJar_Adaptor::cbs_setCookiesFromUrl_4950_0, cookieList, url); - } else { - return QNetworkCookieJar::setCookiesFromUrl(cookieList, url); - } - } - - // [adaptor impl] bool QNetworkCookieJar::updateCookie(const QNetworkCookie &cookie) - bool cbs_updateCookie_2742_0(const QNetworkCookie &cookie) - { - return QNetworkCookieJar::updateCookie(cookie); - } - - virtual bool updateCookie(const QNetworkCookie &cookie) - { - if (cb_updateCookie_2742_0.can_issue()) { - return cb_updateCookie_2742_0.issue(&QNetworkCookieJar_Adaptor::cbs_updateCookie_2742_0, cookie); - } else { - return QNetworkCookieJar::updateCookie(cookie); - } - } - - // [adaptor impl] void QNetworkCookieJar::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QNetworkCookieJar::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QNetworkCookieJar_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QNetworkCookieJar::childEvent(arg1); - } - } - - // [adaptor impl] void QNetworkCookieJar::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QNetworkCookieJar::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QNetworkCookieJar_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QNetworkCookieJar::customEvent(arg1); - } - } - - // [adaptor impl] void QNetworkCookieJar::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QNetworkCookieJar::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QNetworkCookieJar_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QNetworkCookieJar::disconnectNotify(signal); - } - } - - // [adaptor impl] void QNetworkCookieJar::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QNetworkCookieJar::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QNetworkCookieJar_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QNetworkCookieJar::timerEvent(arg1); - } - } - - // [adaptor impl] bool QNetworkCookieJar::validateCookie(const QNetworkCookie &cookie, const QUrl &url) - bool cbs_validateCookie_c4335_0(const QNetworkCookie &cookie, const QUrl &url) const - { - return QNetworkCookieJar::validateCookie(cookie, url); - } - - virtual bool validateCookie(const QNetworkCookie &cookie, const QUrl &url) const - { - if (cb_validateCookie_c4335_0.can_issue()) { - return cb_validateCookie_c4335_0.issue(&QNetworkCookieJar_Adaptor::cbs_validateCookie_c4335_0, cookie, url); - } else { - return QNetworkCookieJar::validateCookie(cookie, url); - } - } - - gsi::Callback cb_cookiesForUrl_c1701_0; - gsi::Callback cb_deleteCookie_2742_0; - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_insertCookie_2742_0; - gsi::Callback cb_setCookiesFromUrl_4950_0; - gsi::Callback cb_updateCookie_2742_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_timerEvent_1730_0; - gsi::Callback cb_validateCookie_c4335_0; -}; - -QNetworkCookieJar_Adaptor::~QNetworkCookieJar_Adaptor() { } - -// Constructor QNetworkCookieJar::QNetworkCookieJar(QObject *parent) (adaptor class) - -static void _init_ctor_QNetworkCookieJar_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkCookieJar_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QNetworkCookieJar_Adaptor (arg1)); -} - - -// exposed QList QNetworkCookieJar::allCookies() - -static void _init_fp_allCookies_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_fp_allCookies_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_allCookies_c0 ()); -} - - -// void QNetworkCookieJar::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookieJar_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// QList QNetworkCookieJar::cookiesForUrl(const QUrl &url) - -static void _init_cbs_cookiesForUrl_c1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return > (); -} - -static void _call_cbs_cookiesForUrl_c1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write > ((QList)((QNetworkCookieJar_Adaptor *)cls)->cbs_cookiesForUrl_c1701_0 (arg1)); -} - -static void _set_callback_cbs_cookiesForUrl_c1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_cookiesForUrl_c1701_0 = cb; -} - - -// void QNetworkCookieJar::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookieJar_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// bool QNetworkCookieJar::deleteCookie(const QNetworkCookie &cookie) - -static void _init_cbs_deleteCookie_2742_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookie"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_deleteCookie_2742_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_deleteCookie_2742_0 (arg1)); -} - -static void _set_callback_cbs_deleteCookie_2742_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_deleteCookie_2742_0 = cb; -} - - -// emitter void QNetworkCookieJar::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QNetworkCookieJar_Adaptor *)cls)->emitter_QNetworkCookieJar_destroyed_1302 (arg1); -} - - -// void QNetworkCookieJar::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookieJar_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// bool QNetworkCookieJar::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QNetworkCookieJar::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// bool QNetworkCookieJar::insertCookie(const QNetworkCookie &cookie) - -static void _init_cbs_insertCookie_2742_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookie"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_insertCookie_2742_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_insertCookie_2742_0 (arg1)); -} - -static void _set_callback_cbs_insertCookie_2742_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_insertCookie_2742_0 = cb; -} - - -// exposed bool QNetworkCookieJar::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_isSignalConnected_c2394 (arg1)); -} - - -// exposed int QNetworkCookieJar::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_receivers_c1731 (arg1)); -} - - -// exposed QObject *QNetworkCookieJar::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_sender_c0 ()); -} - - -// exposed int QNetworkCookieJar::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_senderSignalIndex_c0 ()); -} - - -// exposed void QNetworkCookieJar::setAllCookies(const QList &cookieList) - -static void _init_fp_setAllCookies_3357 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookieList"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_fp_setAllCookies_3357 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_setAllCookies_3357 (arg1); -} - - -// bool QNetworkCookieJar::setCookiesFromUrl(const QList &cookieList, const QUrl &url) - -static void _init_cbs_setCookiesFromUrl_4950_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookieList"); - decl->add_arg & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("url"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_setCookiesFromUrl_4950_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QUrl &arg2 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_setCookiesFromUrl_4950_0 (arg1, arg2)); -} - -static void _set_callback_cbs_setCookiesFromUrl_4950_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_setCookiesFromUrl_4950_0 = cb; -} - - -// void QNetworkCookieJar::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkCookieJar_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -// bool QNetworkCookieJar::updateCookie(const QNetworkCookie &cookie) - -static void _init_cbs_updateCookie_2742_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookie"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_updateCookie_2742_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_updateCookie_2742_0 (arg1)); -} - -static void _set_callback_cbs_updateCookie_2742_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_updateCookie_2742_0 = cb; -} - - -// bool QNetworkCookieJar::validateCookie(const QNetworkCookie &cookie, const QUrl &url) - -static void _init_cbs_validateCookie_c4335_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cookie"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("url"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_validateCookie_c4335_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); - ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->cbs_validateCookie_c4335_0 (arg1, arg2)); -} - -static void _set_callback_cbs_validateCookie_c4335_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkCookieJar_Adaptor *)cls)->cb_validateCookie_c4335_0 = cb; -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QNetworkCookieJar (); - -static gsi::Methods methods_QNetworkCookieJar_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkCookieJar::QNetworkCookieJar(QObject *parent)\nThis method creates an object of class QNetworkCookieJar.", &_init_ctor_QNetworkCookieJar_Adaptor_1302, &_call_ctor_QNetworkCookieJar_Adaptor_1302); - methods += new qt_gsi::GenericMethod ("*allCookies", "@brief Method QList QNetworkCookieJar::allCookies()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_allCookies_c0, &_call_fp_allCookies_c0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QNetworkCookieJar::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("cookiesForUrl", "@hide", true, &_init_cbs_cookiesForUrl_c1701_0, &_call_cbs_cookiesForUrl_c1701_0); - methods += new qt_gsi::GenericMethod ("cookiesForUrl", "@brief Virtual method QList QNetworkCookieJar::cookiesForUrl(const QUrl &url)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_cookiesForUrl_c1701_0, &_call_cbs_cookiesForUrl_c1701_0, &_set_callback_cbs_cookiesForUrl_c1701_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QNetworkCookieJar::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("deleteCookie", "@hide", false, &_init_cbs_deleteCookie_2742_0, &_call_cbs_deleteCookie_2742_0); - methods += new qt_gsi::GenericMethod ("deleteCookie", "@brief Virtual method bool QNetworkCookieJar::deleteCookie(const QNetworkCookie &cookie)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_deleteCookie_2742_0, &_call_cbs_deleteCookie_2742_0, &_set_callback_cbs_deleteCookie_2742_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QNetworkCookieJar::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QNetworkCookieJar::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QNetworkCookieJar::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QNetworkCookieJar::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("insertCookie", "@hide", false, &_init_cbs_insertCookie_2742_0, &_call_cbs_insertCookie_2742_0); - methods += new qt_gsi::GenericMethod ("insertCookie", "@brief Virtual method bool QNetworkCookieJar::insertCookie(const QNetworkCookie &cookie)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_insertCookie_2742_0, &_call_cbs_insertCookie_2742_0, &_set_callback_cbs_insertCookie_2742_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QNetworkCookieJar::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QNetworkCookieJar::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QNetworkCookieJar::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QNetworkCookieJar::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("*setAllCookies", "@brief Method void QNetworkCookieJar::setAllCookies(const QList &cookieList)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_setAllCookies_3357, &_call_fp_setAllCookies_3357); - methods += new qt_gsi::GenericMethod ("setCookiesFromUrl", "@hide", false, &_init_cbs_setCookiesFromUrl_4950_0, &_call_cbs_setCookiesFromUrl_4950_0); - methods += new qt_gsi::GenericMethod ("setCookiesFromUrl", "@brief Virtual method bool QNetworkCookieJar::setCookiesFromUrl(const QList &cookieList, const QUrl &url)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_setCookiesFromUrl_4950_0, &_call_cbs_setCookiesFromUrl_4950_0, &_set_callback_cbs_setCookiesFromUrl_4950_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QNetworkCookieJar::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("updateCookie", "@hide", false, &_init_cbs_updateCookie_2742_0, &_call_cbs_updateCookie_2742_0); - methods += new qt_gsi::GenericMethod ("updateCookie", "@brief Virtual method bool QNetworkCookieJar::updateCookie(const QNetworkCookie &cookie)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_updateCookie_2742_0, &_call_cbs_updateCookie_2742_0, &_set_callback_cbs_updateCookie_2742_0); - methods += new qt_gsi::GenericMethod ("*validateCookie", "@hide", true, &_init_cbs_validateCookie_c4335_0, &_call_cbs_validateCookie_c4335_0); - methods += new qt_gsi::GenericMethod ("*validateCookie", "@brief Virtual method bool QNetworkCookieJar::validateCookie(const QNetworkCookie &cookie, const QUrl &url)\nThis method can be reimplemented in a derived class.", true, &_init_cbs_validateCookie_c4335_0, &_call_cbs_validateCookie_c4335_0, &_set_callback_cbs_validateCookie_c4335_0); - return methods; -} - -gsi::Class decl_QNetworkCookieJar_Adaptor (qtdecl_QNetworkCookieJar (), "QtMultimedia", "QNetworkCookieJar", - methods_QNetworkCookieJar_Adaptor (), - "@qt\n@brief Binding of QNetworkCookieJar"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkDiskCache.cc deleted file mode 100644 index 50801f987..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkDiskCache.cc +++ /dev/null @@ -1,1165 +0,0 @@ - -/* - - 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 gsiDeclQNetworkDiskCache.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkDiskCache - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QNetworkDiskCache::staticMetaObject); -} - - -// QString QNetworkDiskCache::cacheDirectory() - - -static void _init_f_cacheDirectory_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_cacheDirectory_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkDiskCache *)cls)->cacheDirectory ()); -} - - -// () const - - -static void _init_f_cacheSize_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_cacheSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QNetworkDiskCache *)cls)->cacheSize ()); -} - - -// () - - -static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache *)cls)->clear (); -} - - -// (const QUrl &) - - -static void _init_f_data_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_data_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((QIODevice *)((QNetworkDiskCache *)cls)->data (arg1)); -} - - -// QNetworkCacheMetaData QNetworkDiskCache::fileMetaData(const QString &fileName) - - -static void _init_f_fileMetaData_c2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("fileName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_fileMetaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache *)cls)->fileMetaData (arg1)); -} - - -// (QIODevice *) - - -static void _init_f_insert_1447 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_insert_1447 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache *)cls)->insert (arg1); -} - - -// qint64 QNetworkDiskCache::maximumCacheSize() - - -static void _init_f_maximumCacheSize_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_maximumCacheSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QNetworkDiskCache *)cls)->maximumCacheSize ()); -} - - -// (const QUrl &) - - -static void _init_f_metaData_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_metaData_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache *)cls)->metaData (arg1)); -} - - -// (const QNetworkCacheMetaData &) - - -static void _init_f_prepare_3377 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("metaData"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_prepare_3377 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - ret.write ((QIODevice *)((QNetworkDiskCache *)cls)->prepare (arg1)); -} - - -// (const QUrl &) - - -static void _init_f_remove_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_remove_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((bool)((QNetworkDiskCache *)cls)->remove (arg1)); -} - - -// void QNetworkDiskCache::setCacheDirectory(const QString &cacheDir) - - -static void _init_f_setCacheDirectory_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("cacheDir"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setCacheDirectory_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache *)cls)->setCacheDirectory (arg1); -} - - -// void QNetworkDiskCache::setMaximumCacheSize(qint64 size) - - -static void _init_f_setMaximumCacheSize_986 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("size"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setMaximumCacheSize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - qint64 arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache *)cls)->setMaximumCacheSize (arg1); -} - - -// (const QNetworkCacheMetaData &) - - -static void _init_f_updateMetaData_3377 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("metaData"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_updateMetaData_3377 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache *)cls)->updateMetaData (arg1); -} - - -// static QString QNetworkDiskCache::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkDiskCache::tr (arg1, arg2, arg3)); -} - - -// static QString QNetworkDiskCache::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkDiskCache::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkDiskCache () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod (":cacheDirectory", "@brief Method QString QNetworkDiskCache::cacheDirectory()\n", true, &_init_f_cacheDirectory_c0, &_call_f_cacheDirectory_c0); - methods += new qt_gsi::GenericMethod ("cacheSize", "@brief Method () const\nThis is a reimplementation of QAbstractNetworkCache::cacheSize", true, &_init_f_cacheSize_c0, &_call_f_cacheSize_c0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method ()\nThis is a reimplementation of QAbstractNetworkCache::clear", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::data", false, &_init_f_data_1701, &_call_f_data_1701); - methods += new qt_gsi::GenericMethod ("fileMetaData", "@brief Method QNetworkCacheMetaData QNetworkDiskCache::fileMetaData(const QString &fileName)\n", true, &_init_f_fileMetaData_c2025, &_call_f_fileMetaData_c2025); - methods += new qt_gsi::GenericMethod ("insert", "@brief Method (QIODevice *)\nThis is a reimplementation of QAbstractNetworkCache::insert", false, &_init_f_insert_1447, &_call_f_insert_1447); - methods += new qt_gsi::GenericMethod (":maximumCacheSize", "@brief Method qint64 QNetworkDiskCache::maximumCacheSize()\n", true, &_init_f_maximumCacheSize_c0, &_call_f_maximumCacheSize_c0); - methods += new qt_gsi::GenericMethod ("metaData", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::metaData", false, &_init_f_metaData_1701, &_call_f_metaData_1701); - methods += new qt_gsi::GenericMethod ("prepare", "@brief Method (const QNetworkCacheMetaData &)\nThis is a reimplementation of QAbstractNetworkCache::prepare", false, &_init_f_prepare_3377, &_call_f_prepare_3377); - methods += new qt_gsi::GenericMethod ("remove", "@brief Method (const QUrl &)\nThis is a reimplementation of QAbstractNetworkCache::remove", false, &_init_f_remove_1701, &_call_f_remove_1701); - methods += new qt_gsi::GenericMethod ("setCacheDirectory|cacheDirectory=", "@brief Method void QNetworkDiskCache::setCacheDirectory(const QString &cacheDir)\n", false, &_init_f_setCacheDirectory_2025, &_call_f_setCacheDirectory_2025); - methods += new qt_gsi::GenericMethod ("setMaximumCacheSize|maximumCacheSize=", "@brief Method void QNetworkDiskCache::setMaximumCacheSize(qint64 size)\n", false, &_init_f_setMaximumCacheSize_986, &_call_f_setMaximumCacheSize_986); - methods += new qt_gsi::GenericMethod ("updateMetaData", "@brief Method (const QNetworkCacheMetaData &)\nThis is a reimplementation of QAbstractNetworkCache::updateMetaData", false, &_init_f_updateMetaData_3377, &_call_f_updateMetaData_3377); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QNetworkDiskCache::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkDiskCache::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 QNetworkDiskCache::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 &qtdecl_QAbstractNetworkCache (); - -qt_gsi::QtNativeClass decl_QNetworkDiskCache (qtdecl_QAbstractNetworkCache (), "QtMultimedia", "QNetworkDiskCache_Native", - methods_QNetworkDiskCache (), - "@hide\n@alias QNetworkDiskCache"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkDiskCache () { return decl_QNetworkDiskCache; } - -} - - -class QNetworkDiskCache_Adaptor : public QNetworkDiskCache, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QNetworkDiskCache_Adaptor(); - - // [adaptor ctor] QNetworkDiskCache::QNetworkDiskCache(QObject *parent) - QNetworkDiskCache_Adaptor() : QNetworkDiskCache() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QNetworkDiskCache::QNetworkDiskCache(QObject *parent) - QNetworkDiskCache_Adaptor(QObject *parent) : QNetworkDiskCache(parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] bool QNetworkDiskCache::isSignalConnected(const QMetaMethod &signal) - bool fp_QNetworkDiskCache_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QNetworkDiskCache::isSignalConnected(signal); - } - - // [expose] int QNetworkDiskCache::receivers(const char *signal) - int fp_QNetworkDiskCache_receivers_c1731 (const char *signal) const { - return QNetworkDiskCache::receivers(signal); - } - - // [expose] QObject *QNetworkDiskCache::sender() - QObject * fp_QNetworkDiskCache_sender_c0 () const { - return QNetworkDiskCache::sender(); - } - - // [expose] int QNetworkDiskCache::senderSignalIndex() - int fp_QNetworkDiskCache_senderSignalIndex_c0 () const { - return QNetworkDiskCache::senderSignalIndex(); - } - - // [adaptor impl] qint64 QNetworkDiskCache::cacheSize() - qint64 cbs_cacheSize_c0_0() const - { - return QNetworkDiskCache::cacheSize(); - } - - virtual qint64 cacheSize() const - { - if (cb_cacheSize_c0_0.can_issue()) { - return cb_cacheSize_c0_0.issue(&QNetworkDiskCache_Adaptor::cbs_cacheSize_c0_0); - } else { - return QNetworkDiskCache::cacheSize(); - } - } - - // [adaptor impl] void QNetworkDiskCache::clear() - void cbs_clear_0_0() - { - QNetworkDiskCache::clear(); - } - - virtual void clear() - { - if (cb_clear_0_0.can_issue()) { - cb_clear_0_0.issue(&QNetworkDiskCache_Adaptor::cbs_clear_0_0); - } else { - QNetworkDiskCache::clear(); - } - } - - // [adaptor impl] QIODevice *QNetworkDiskCache::data(const QUrl &url) - QIODevice * cbs_data_1701_0(const QUrl &url) - { - return QNetworkDiskCache::data(url); - } - - virtual QIODevice * data(const QUrl &url) - { - if (cb_data_1701_0.can_issue()) { - return cb_data_1701_0.issue(&QNetworkDiskCache_Adaptor::cbs_data_1701_0, url); - } else { - return QNetworkDiskCache::data(url); - } - } - - // [emitter impl] void QNetworkDiskCache::destroyed(QObject *) - void emitter_QNetworkDiskCache_destroyed_1302(QObject *arg1) - { - emit QNetworkDiskCache::destroyed(arg1); - } - - // [adaptor impl] bool QNetworkDiskCache::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QNetworkDiskCache::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QNetworkDiskCache_Adaptor::cbs_event_1217_0, arg1); - } else { - return QNetworkDiskCache::event(arg1); - } - } - - // [adaptor impl] bool QNetworkDiskCache::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QNetworkDiskCache::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QNetworkDiskCache_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QNetworkDiskCache::eventFilter(arg1, arg2); - } - } - - // [adaptor impl] void QNetworkDiskCache::insert(QIODevice *device) - void cbs_insert_1447_0(QIODevice *device) - { - QNetworkDiskCache::insert(device); - } - - virtual void insert(QIODevice *device) - { - if (cb_insert_1447_0.can_issue()) { - cb_insert_1447_0.issue(&QNetworkDiskCache_Adaptor::cbs_insert_1447_0, device); - } else { - QNetworkDiskCache::insert(device); - } - } - - // [adaptor impl] QNetworkCacheMetaData QNetworkDiskCache::metaData(const QUrl &url) - QNetworkCacheMetaData cbs_metaData_1701_0(const QUrl &url) - { - return QNetworkDiskCache::metaData(url); - } - - virtual QNetworkCacheMetaData metaData(const QUrl &url) - { - if (cb_metaData_1701_0.can_issue()) { - return cb_metaData_1701_0.issue(&QNetworkDiskCache_Adaptor::cbs_metaData_1701_0, url); - } else { - return QNetworkDiskCache::metaData(url); - } - } - - // [adaptor impl] QIODevice *QNetworkDiskCache::prepare(const QNetworkCacheMetaData &metaData) - QIODevice * cbs_prepare_3377_0(const QNetworkCacheMetaData &metaData) - { - return QNetworkDiskCache::prepare(metaData); - } - - virtual QIODevice * prepare(const QNetworkCacheMetaData &metaData) - { - if (cb_prepare_3377_0.can_issue()) { - return cb_prepare_3377_0.issue(&QNetworkDiskCache_Adaptor::cbs_prepare_3377_0, metaData); - } else { - return QNetworkDiskCache::prepare(metaData); - } - } - - // [adaptor impl] bool QNetworkDiskCache::remove(const QUrl &url) - bool cbs_remove_1701_0(const QUrl &url) - { - return QNetworkDiskCache::remove(url); - } - - virtual bool remove(const QUrl &url) - { - if (cb_remove_1701_0.can_issue()) { - return cb_remove_1701_0.issue(&QNetworkDiskCache_Adaptor::cbs_remove_1701_0, url); - } else { - return QNetworkDiskCache::remove(url); - } - } - - // [adaptor impl] void QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData &metaData) - void cbs_updateMetaData_3377_0(const QNetworkCacheMetaData &metaData) - { - QNetworkDiskCache::updateMetaData(metaData); - } - - virtual void updateMetaData(const QNetworkCacheMetaData &metaData) - { - if (cb_updateMetaData_3377_0.can_issue()) { - cb_updateMetaData_3377_0.issue(&QNetworkDiskCache_Adaptor::cbs_updateMetaData_3377_0, metaData); - } else { - QNetworkDiskCache::updateMetaData(metaData); - } - } - - // [adaptor impl] void QNetworkDiskCache::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QNetworkDiskCache::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QNetworkDiskCache_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QNetworkDiskCache::childEvent(arg1); - } - } - - // [adaptor impl] void QNetworkDiskCache::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QNetworkDiskCache::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QNetworkDiskCache_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QNetworkDiskCache::customEvent(arg1); - } - } - - // [adaptor impl] void QNetworkDiskCache::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QNetworkDiskCache::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QNetworkDiskCache_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QNetworkDiskCache::disconnectNotify(signal); - } - } - - // [adaptor impl] qint64 QNetworkDiskCache::expire() - qint64 cbs_expire_0_0() - { - return QNetworkDiskCache::expire(); - } - - virtual qint64 expire() - { - if (cb_expire_0_0.can_issue()) { - return cb_expire_0_0.issue(&QNetworkDiskCache_Adaptor::cbs_expire_0_0); - } else { - return QNetworkDiskCache::expire(); - } - } - - // [adaptor impl] void QNetworkDiskCache::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QNetworkDiskCache::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QNetworkDiskCache_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QNetworkDiskCache::timerEvent(arg1); - } - } - - gsi::Callback cb_cacheSize_c0_0; - gsi::Callback cb_clear_0_0; - gsi::Callback cb_data_1701_0; - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_insert_1447_0; - gsi::Callback cb_metaData_1701_0; - gsi::Callback cb_prepare_3377_0; - gsi::Callback cb_remove_1701_0; - gsi::Callback cb_updateMetaData_3377_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_expire_0_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QNetworkDiskCache_Adaptor::~QNetworkDiskCache_Adaptor() { } - -// Constructor QNetworkDiskCache::QNetworkDiskCache(QObject *parent) (adaptor class) - -static void _init_ctor_QNetworkDiskCache_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkDiskCache_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QNetworkDiskCache_Adaptor (arg1)); -} - - -// qint64 QNetworkDiskCache::cacheSize() - -static void _init_cbs_cacheSize_c0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_cacheSize_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QNetworkDiskCache_Adaptor *)cls)->cbs_cacheSize_c0_0 ()); -} - -static void _set_callback_cbs_cacheSize_c0_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_cacheSize_c0_0 = cb; -} - - -// void QNetworkDiskCache::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// void QNetworkDiskCache::clear() - -static void _init_cbs_clear_0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_clear_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache_Adaptor *)cls)->cbs_clear_0_0 (); -} - -static void _set_callback_cbs_clear_0_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_clear_0_0 = cb; -} - - -// void QNetworkDiskCache::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// QIODevice *QNetworkDiskCache::data(const QUrl &url) - -static void _init_cbs_data_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_data_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((QIODevice *)((QNetworkDiskCache_Adaptor *)cls)->cbs_data_1701_0 (arg1)); -} - -static void _set_callback_cbs_data_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_data_1701_0 = cb; -} - - -// emitter void QNetworkDiskCache::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QNetworkDiskCache_Adaptor *)cls)->emitter_QNetworkDiskCache_destroyed_1302 (arg1); -} - - -// void QNetworkDiskCache::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// bool QNetworkDiskCache::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QNetworkDiskCache::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// qint64 QNetworkDiskCache::expire() - -static void _init_cbs_expire_0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_expire_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QNetworkDiskCache_Adaptor *)cls)->cbs_expire_0_0 ()); -} - -static void _set_callback_cbs_expire_0_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_expire_0_0 = cb; -} - - -// void QNetworkDiskCache::insert(QIODevice *device) - -static void _init_cbs_insert_1447_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_insert_1447_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache_Adaptor *)cls)->cbs_insert_1447_0 (arg1); -} - -static void _set_callback_cbs_insert_1447_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_insert_1447_0 = cb; -} - - -// exposed bool QNetworkDiskCache::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->fp_QNetworkDiskCache_isSignalConnected_c2394 (arg1)); -} - - -// QNetworkCacheMetaData QNetworkDiskCache::metaData(const QUrl &url) - -static void _init_cbs_metaData_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_metaData_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache_Adaptor *)cls)->cbs_metaData_1701_0 (arg1)); -} - -static void _set_callback_cbs_metaData_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_metaData_1701_0 = cb; -} - - -// QIODevice *QNetworkDiskCache::prepare(const QNetworkCacheMetaData &metaData) - -static void _init_cbs_prepare_3377_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("metaData"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_prepare_3377_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - ret.write ((QIODevice *)((QNetworkDiskCache_Adaptor *)cls)->cbs_prepare_3377_0 (arg1)); -} - -static void _set_callback_cbs_prepare_3377_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_prepare_3377_0 = cb; -} - - -// exposed int QNetworkDiskCache::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QNetworkDiskCache_Adaptor *)cls)->fp_QNetworkDiskCache_receivers_c1731 (arg1)); -} - - -// bool QNetworkDiskCache::remove(const QUrl &url) - -static void _init_cbs_remove_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_remove_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->cbs_remove_1701_0 (arg1)); -} - -static void _set_callback_cbs_remove_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_remove_1701_0 = cb; -} - - -// exposed QObject *QNetworkDiskCache::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QNetworkDiskCache_Adaptor *)cls)->fp_QNetworkDiskCache_sender_c0 ()); -} - - -// exposed int QNetworkDiskCache::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkDiskCache_Adaptor *)cls)->fp_QNetworkDiskCache_senderSignalIndex_c0 ()); -} - - -// void QNetworkDiskCache::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -// void QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData &metaData) - -static void _init_cbs_updateMetaData_3377_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("metaData"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_updateMetaData_3377_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkDiskCache_Adaptor *)cls)->cbs_updateMetaData_3377_0 (arg1); -} - -static void _set_callback_cbs_updateMetaData_3377_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkDiskCache_Adaptor *)cls)->cb_updateMetaData_3377_0 = cb; -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QNetworkDiskCache (); - -static gsi::Methods methods_QNetworkDiskCache_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkDiskCache::QNetworkDiskCache(QObject *parent)\nThis method creates an object of class QNetworkDiskCache.", &_init_ctor_QNetworkDiskCache_Adaptor_1302, &_call_ctor_QNetworkDiskCache_Adaptor_1302); - methods += new qt_gsi::GenericMethod ("cacheSize", "@hide", true, &_init_cbs_cacheSize_c0_0, &_call_cbs_cacheSize_c0_0); - methods += new qt_gsi::GenericMethod ("cacheSize", "@brief Virtual method qint64 QNetworkDiskCache::cacheSize()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_cacheSize_c0_0, &_call_cbs_cacheSize_c0_0, &_set_callback_cbs_cacheSize_c0_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QNetworkDiskCache::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("clear", "@hide", false, &_init_cbs_clear_0_0, &_call_cbs_clear_0_0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Virtual method void QNetworkDiskCache::clear()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_clear_0_0, &_call_cbs_clear_0_0, &_set_callback_cbs_clear_0_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QNetworkDiskCache::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("data", "@hide", false, &_init_cbs_data_1701_0, &_call_cbs_data_1701_0); - methods += new qt_gsi::GenericMethod ("data", "@brief Virtual method QIODevice *QNetworkDiskCache::data(const QUrl &url)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_data_1701_0, &_call_cbs_data_1701_0, &_set_callback_cbs_data_1701_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QNetworkDiskCache::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QNetworkDiskCache::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QNetworkDiskCache::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QNetworkDiskCache::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("*expire", "@hide", false, &_init_cbs_expire_0_0, &_call_cbs_expire_0_0); - methods += new qt_gsi::GenericMethod ("*expire", "@brief Virtual method qint64 QNetworkDiskCache::expire()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_expire_0_0, &_call_cbs_expire_0_0, &_set_callback_cbs_expire_0_0); - methods += new qt_gsi::GenericMethod ("insert", "@hide", false, &_init_cbs_insert_1447_0, &_call_cbs_insert_1447_0); - methods += new qt_gsi::GenericMethod ("insert", "@brief Virtual method void QNetworkDiskCache::insert(QIODevice *device)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_insert_1447_0, &_call_cbs_insert_1447_0, &_set_callback_cbs_insert_1447_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QNetworkDiskCache::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("metaData", "@hide", false, &_init_cbs_metaData_1701_0, &_call_cbs_metaData_1701_0); - methods += new qt_gsi::GenericMethod ("metaData", "@brief Virtual method QNetworkCacheMetaData QNetworkDiskCache::metaData(const QUrl &url)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_metaData_1701_0, &_call_cbs_metaData_1701_0, &_set_callback_cbs_metaData_1701_0); - methods += new qt_gsi::GenericMethod ("prepare", "@hide", false, &_init_cbs_prepare_3377_0, &_call_cbs_prepare_3377_0); - methods += new qt_gsi::GenericMethod ("prepare", "@brief Virtual method QIODevice *QNetworkDiskCache::prepare(const QNetworkCacheMetaData &metaData)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_prepare_3377_0, &_call_cbs_prepare_3377_0, &_set_callback_cbs_prepare_3377_0); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QNetworkDiskCache::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("remove", "@hide", false, &_init_cbs_remove_1701_0, &_call_cbs_remove_1701_0); - methods += new qt_gsi::GenericMethod ("remove", "@brief Virtual method bool QNetworkDiskCache::remove(const QUrl &url)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_remove_1701_0, &_call_cbs_remove_1701_0, &_set_callback_cbs_remove_1701_0); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QNetworkDiskCache::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QNetworkDiskCache::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QNetworkDiskCache::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("updateMetaData", "@hide", false, &_init_cbs_updateMetaData_3377_0, &_call_cbs_updateMetaData_3377_0); - methods += new qt_gsi::GenericMethod ("updateMetaData", "@brief Virtual method void QNetworkDiskCache::updateMetaData(const QNetworkCacheMetaData &metaData)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_updateMetaData_3377_0, &_call_cbs_updateMetaData_3377_0, &_set_callback_cbs_updateMetaData_3377_0); - return methods; -} - -gsi::Class decl_QNetworkDiskCache_Adaptor (qtdecl_QNetworkDiskCache (), "QtMultimedia", "QNetworkDiskCache", - methods_QNetworkDiskCache_Adaptor (), - "@qt\n@brief Binding of QNetworkDiskCache"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkInterface.cc deleted file mode 100644 index 30638b3bc..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkInterface.cc +++ /dev/null @@ -1,343 +0,0 @@ - -/* - - 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 gsiDeclQNetworkInterface.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkInterface - -// Constructor QNetworkInterface::QNetworkInterface() - - -static void _init_ctor_QNetworkInterface_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QNetworkInterface_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QNetworkInterface ()); -} - - -// Constructor QNetworkInterface::QNetworkInterface(const QNetworkInterface &other) - - -static void _init_ctor_QNetworkInterface_3053 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkInterface_3053 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkInterface &arg1 = args.read (heap); - ret.write (new QNetworkInterface (arg1)); -} - - -// QList QNetworkInterface::addressEntries() - - -static void _init_f_addressEntries_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_addressEntries_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QNetworkInterface *)cls)->addressEntries ()); -} - - -// QFlags QNetworkInterface::flags() - - -static void _init_f_flags_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_flags_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QFlags)((QNetworkInterface *)cls)->flags ()); -} - - -// QString QNetworkInterface::hardwareAddress() - - -static void _init_f_hardwareAddress_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_hardwareAddress_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkInterface *)cls)->hardwareAddress ()); -} - - -// QString QNetworkInterface::humanReadableName() - - -static void _init_f_humanReadableName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_humanReadableName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkInterface *)cls)->humanReadableName ()); -} - - -// int QNetworkInterface::index() - - -static void _init_f_index_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_index_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkInterface *)cls)->index ()); -} - - -// bool QNetworkInterface::isValid() - - -static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkInterface *)cls)->isValid ()); -} - - -// QString QNetworkInterface::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkInterface *)cls)->name ()); -} - - -// QNetworkInterface &QNetworkInterface::operator=(const QNetworkInterface &other) - - -static void _init_f_operator_eq__3053 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3053 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkInterface &arg1 = args.read (heap); - ret.write ((QNetworkInterface &)((QNetworkInterface *)cls)->operator= (arg1)); -} - - -// void QNetworkInterface::swap(QNetworkInterface &other) - - -static void _init_f_swap_2358 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2358 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkInterface &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkInterface *)cls)->swap (arg1); -} - - -// static QList QNetworkInterface::allAddresses() - - -static void _init_f_allAddresses_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_allAddresses_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)QNetworkInterface::allAddresses ()); -} - - -// static QList QNetworkInterface::allInterfaces() - - -static void _init_f_allInterfaces_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_allInterfaces_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)QNetworkInterface::allInterfaces ()); -} - - -// static QNetworkInterface QNetworkInterface::interfaceFromIndex(int index) - - -static void _init_f_interfaceFromIndex_767 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("index"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_interfaceFromIndex_767 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - ret.write ((QNetworkInterface)QNetworkInterface::interfaceFromIndex (arg1)); -} - - -// static QNetworkInterface QNetworkInterface::interfaceFromName(const QString &name) - - -static void _init_f_interfaceFromName_2025 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_interfaceFromName_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QNetworkInterface)QNetworkInterface::interfaceFromName (arg1)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkInterface () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkInterface::QNetworkInterface()\nThis method creates an object of class QNetworkInterface.", &_init_ctor_QNetworkInterface_0, &_call_ctor_QNetworkInterface_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkInterface::QNetworkInterface(const QNetworkInterface &other)\nThis method creates an object of class QNetworkInterface.", &_init_ctor_QNetworkInterface_3053, &_call_ctor_QNetworkInterface_3053); - methods += new qt_gsi::GenericMethod ("addressEntries", "@brief Method QList QNetworkInterface::addressEntries()\n", true, &_init_f_addressEntries_c0, &_call_f_addressEntries_c0); - methods += new qt_gsi::GenericMethod ("flags", "@brief Method QFlags QNetworkInterface::flags()\n", true, &_init_f_flags_c0, &_call_f_flags_c0); - methods += new qt_gsi::GenericMethod ("hardwareAddress", "@brief Method QString QNetworkInterface::hardwareAddress()\n", true, &_init_f_hardwareAddress_c0, &_call_f_hardwareAddress_c0); - methods += new qt_gsi::GenericMethod ("humanReadableName", "@brief Method QString QNetworkInterface::humanReadableName()\n", true, &_init_f_humanReadableName_c0, &_call_f_humanReadableName_c0); - methods += new qt_gsi::GenericMethod ("index", "@brief Method int QNetworkInterface::index()\n", true, &_init_f_index_c0, &_call_f_index_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QNetworkInterface::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QNetworkInterface::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QNetworkInterface &QNetworkInterface::operator=(const QNetworkInterface &other)\n", false, &_init_f_operator_eq__3053, &_call_f_operator_eq__3053); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QNetworkInterface::swap(QNetworkInterface &other)\n", false, &_init_f_swap_2358, &_call_f_swap_2358); - methods += new qt_gsi::GenericStaticMethod ("allAddresses", "@brief Static method QList QNetworkInterface::allAddresses()\nThis method is static and can be called without an instance.", &_init_f_allAddresses_0, &_call_f_allAddresses_0); - methods += new qt_gsi::GenericStaticMethod ("allInterfaces", "@brief Static method QList QNetworkInterface::allInterfaces()\nThis method is static and can be called without an instance.", &_init_f_allInterfaces_0, &_call_f_allInterfaces_0); - methods += new qt_gsi::GenericStaticMethod ("interfaceFromIndex", "@brief Static method QNetworkInterface QNetworkInterface::interfaceFromIndex(int index)\nThis method is static and can be called without an instance.", &_init_f_interfaceFromIndex_767, &_call_f_interfaceFromIndex_767); - methods += new qt_gsi::GenericStaticMethod ("interfaceFromName", "@brief Static method QNetworkInterface QNetworkInterface::interfaceFromName(const QString &name)\nThis method is static and can be called without an instance.", &_init_f_interfaceFromName_2025, &_call_f_interfaceFromName_2025); - return methods; -} - -gsi::Class decl_QNetworkInterface ("QtMultimedia", "QNetworkInterface", - methods_QNetworkInterface (), - "@qt\n@brief Binding of QNetworkInterface"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkInterface () { return decl_QNetworkInterface; } - -} - - -// Implementation of the enum wrapper class for QNetworkInterface::InterfaceFlag -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkInterface_InterfaceFlag_Enum ("QtMultimedia", "QNetworkInterface_InterfaceFlag", - gsi::enum_const ("IsUp", QNetworkInterface::IsUp, "@brief Enum constant QNetworkInterface::IsUp") + - gsi::enum_const ("IsRunning", QNetworkInterface::IsRunning, "@brief Enum constant QNetworkInterface::IsRunning") + - gsi::enum_const ("CanBroadcast", QNetworkInterface::CanBroadcast, "@brief Enum constant QNetworkInterface::CanBroadcast") + - gsi::enum_const ("IsLoopBack", QNetworkInterface::IsLoopBack, "@brief Enum constant QNetworkInterface::IsLoopBack") + - gsi::enum_const ("IsPointToPoint", QNetworkInterface::IsPointToPoint, "@brief Enum constant QNetworkInterface::IsPointToPoint") + - gsi::enum_const ("CanMulticast", QNetworkInterface::CanMulticast, "@brief Enum constant QNetworkInterface::CanMulticast"), - "@qt\n@brief This class represents the QNetworkInterface::InterfaceFlag enum"); - -static gsi::QFlagsClass decl_QNetworkInterface_InterfaceFlag_Enums ("QtMultimedia", "QNetworkInterface_QFlags_InterfaceFlag", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkInterface_InterfaceFlag_Enum_in_parent (decl_QNetworkInterface_InterfaceFlag_Enum.defs ()); -static gsi::ClassExt decl_QNetworkInterface_InterfaceFlag_Enum_as_child (decl_QNetworkInterface_InterfaceFlag_Enum, "InterfaceFlag"); -static gsi::ClassExt decl_QNetworkInterface_InterfaceFlag_Enums_as_child (decl_QNetworkInterface_InterfaceFlag_Enums, "QFlags_InterfaceFlag"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxy.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxy.cc deleted file mode 100644 index 62ac947cd..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxy.cc +++ /dev/null @@ -1,667 +0,0 @@ - -/* - - 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 gsiDeclQNetworkProxy.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkProxy - -// Constructor QNetworkProxy::QNetworkProxy() - - -static void _init_ctor_QNetworkProxy_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxy_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QNetworkProxy ()); -} - - -// Constructor QNetworkProxy::QNetworkProxy(QNetworkProxy::ProxyType type, const QString &hostName, quint16 port, const QString &user, const QString &password) - - -static void _init_ctor_QNetworkProxy_9632 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("type"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("hostName", true, "QString()"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("port", true, "0"); - decl->add_arg (argspec_2); - static gsi::ArgSpecBase argspec_3 ("user", true, "QString()"); - decl->add_arg (argspec_3); - static gsi::ArgSpecBase argspec_4 ("password", true, "QString()"); - decl->add_arg (argspec_4); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxy_9632 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - quint16 arg3 = args ? args.read (heap) : (quint16)(0); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg5 = args ? args.read (heap) : (const QString &)(QString()); - ret.write (new QNetworkProxy (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5)); -} - - -// Constructor QNetworkProxy::QNetworkProxy(const QNetworkProxy &other) - - -static void _init_ctor_QNetworkProxy_2686 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxy_2686 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - ret.write (new QNetworkProxy (arg1)); -} - - -// QFlags QNetworkProxy::capabilities() - - -static void _init_f_capabilities_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_capabilities_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QFlags)((QNetworkProxy *)cls)->capabilities ()); -} - - -// bool QNetworkProxy::hasRawHeader(const QByteArray &headerName) - - -static void _init_f_hasRawHeader_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_hasRawHeader_c2309 (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 (heap); - ret.write ((bool)((QNetworkProxy *)cls)->hasRawHeader (arg1)); -} - - -// QVariant QNetworkProxy::header(QNetworkRequest::KnownHeaders header) - - -static void _init_f_header_c3349 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("header"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_header_c3349 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((QVariant)((QNetworkProxy *)cls)->header (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// QString QNetworkProxy::hostName() - - -static void _init_f_hostName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_hostName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkProxy *)cls)->hostName ()); -} - - -// bool QNetworkProxy::isCachingProxy() - - -static void _init_f_isCachingProxy_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isCachingProxy_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkProxy *)cls)->isCachingProxy ()); -} - - -// bool QNetworkProxy::isTransparentProxy() - - -static void _init_f_isTransparentProxy_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isTransparentProxy_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkProxy *)cls)->isTransparentProxy ()); -} - - -// bool QNetworkProxy::operator!=(const QNetworkProxy &other) - - -static void _init_f_operator_excl__eq__c2686 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2686 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - ret.write ((bool)((QNetworkProxy *)cls)->operator!= (arg1)); -} - - -// QNetworkProxy &QNetworkProxy::operator=(const QNetworkProxy &other) - - -static void _init_f_operator_eq__2686 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2686 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - ret.write ((QNetworkProxy &)((QNetworkProxy *)cls)->operator= (arg1)); -} - - -// bool QNetworkProxy::operator==(const QNetworkProxy &other) - - -static void _init_f_operator_eq__eq__c2686 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2686 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - ret.write ((bool)((QNetworkProxy *)cls)->operator== (arg1)); -} - - -// QString QNetworkProxy::password() - - -static void _init_f_password_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_password_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkProxy *)cls)->password ()); -} - - -// quint16 QNetworkProxy::port() - - -static void _init_f_port_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_port_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint16)((QNetworkProxy *)cls)->port ()); -} - - -// QByteArray QNetworkProxy::rawHeader(const QByteArray &headerName) - - -static void _init_f_rawHeader_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_rawHeader_c2309 (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 (heap); - ret.write ((QByteArray)((QNetworkProxy *)cls)->rawHeader (arg1)); -} - - -// QList QNetworkProxy::rawHeaderList() - - -static void _init_f_rawHeaderList_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_rawHeaderList_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QNetworkProxy *)cls)->rawHeaderList ()); -} - - -// void QNetworkProxy::setCapabilities(QFlags capab) - - -static void _init_f_setCapabilities_3647 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("capab"); - decl->add_arg > (argspec_0); - decl->set_return (); -} - -static void _call_f_setCapabilities_3647 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QFlags arg1 = args.read > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->setCapabilities (arg1); -} - - -// void QNetworkProxy::setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value) - - -static void _init_f_setHeader_5360 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("header"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setHeader_5360 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->setHeader (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); -} - - -// void QNetworkProxy::setHostName(const QString &hostName) - - -static void _init_f_setHostName_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->setHostName (arg1); -} - - -// void QNetworkProxy::setPassword(const QString &password) - - -static void _init_f_setPassword_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("password"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->setPassword (arg1); -} - - -// void QNetworkProxy::setPort(quint16 port) - - -static void _init_f_setPort_1100 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("port"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPort_1100 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - quint16 arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->setPort (arg1); -} - - -// void QNetworkProxy::setRawHeader(const QByteArray &headerName, const QByteArray &value) - - -static void _init_f_setRawHeader_4510 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setRawHeader_4510 (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 (heap); - const QByteArray &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->setRawHeader (arg1, arg2); -} - - -// void QNetworkProxy::setType(QNetworkProxy::ProxyType type) - - -static void _init_f_setType_2889 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("type"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setType_2889 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// void QNetworkProxy::setUser(const QString &userName) - - -static void _init_f_setUser_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("userName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setUser_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->setUser (arg1); -} - - -// void QNetworkProxy::swap(QNetworkProxy &other) - - -static void _init_f_swap_1991 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_1991 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkProxy &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxy *)cls)->swap (arg1); -} - - -// QNetworkProxy::ProxyType QNetworkProxy::type() - - -static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_type_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkProxy *)cls)->type ())); -} - - -// QString QNetworkProxy::user() - - -static void _init_f_user_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_user_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkProxy *)cls)->user ()); -} - - -// static QNetworkProxy QNetworkProxy::applicationProxy() - - -static void _init_f_applicationProxy_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_applicationProxy_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkProxy)QNetworkProxy::applicationProxy ()); -} - - -// static void QNetworkProxy::setApplicationProxy(const QNetworkProxy &proxy) - - -static void _init_f_setApplicationProxy_2686 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("proxy"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setApplicationProxy_2686 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QNetworkProxy::setApplicationProxy (arg1); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkProxy () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxy::QNetworkProxy()\nThis method creates an object of class QNetworkProxy.", &_init_ctor_QNetworkProxy_0, &_call_ctor_QNetworkProxy_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxy::QNetworkProxy(QNetworkProxy::ProxyType type, const QString &hostName, quint16 port, const QString &user, const QString &password)\nThis method creates an object of class QNetworkProxy.", &_init_ctor_QNetworkProxy_9632, &_call_ctor_QNetworkProxy_9632); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxy::QNetworkProxy(const QNetworkProxy &other)\nThis method creates an object of class QNetworkProxy.", &_init_ctor_QNetworkProxy_2686, &_call_ctor_QNetworkProxy_2686); - methods += new qt_gsi::GenericMethod (":capabilities", "@brief Method QFlags QNetworkProxy::capabilities()\n", true, &_init_f_capabilities_c0, &_call_f_capabilities_c0); - methods += new qt_gsi::GenericMethod ("hasRawHeader", "@brief Method bool QNetworkProxy::hasRawHeader(const QByteArray &headerName)\n", true, &_init_f_hasRawHeader_c2309, &_call_f_hasRawHeader_c2309); - methods += new qt_gsi::GenericMethod ("header", "@brief Method QVariant QNetworkProxy::header(QNetworkRequest::KnownHeaders header)\n", true, &_init_f_header_c3349, &_call_f_header_c3349); - methods += new qt_gsi::GenericMethod (":hostName", "@brief Method QString QNetworkProxy::hostName()\n", true, &_init_f_hostName_c0, &_call_f_hostName_c0); - methods += new qt_gsi::GenericMethod ("isCachingProxy?", "@brief Method bool QNetworkProxy::isCachingProxy()\n", true, &_init_f_isCachingProxy_c0, &_call_f_isCachingProxy_c0); - methods += new qt_gsi::GenericMethod ("isTransparentProxy?", "@brief Method bool QNetworkProxy::isTransparentProxy()\n", true, &_init_f_isTransparentProxy_c0, &_call_f_isTransparentProxy_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QNetworkProxy::operator!=(const QNetworkProxy &other)\n", true, &_init_f_operator_excl__eq__c2686, &_call_f_operator_excl__eq__c2686); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QNetworkProxy &QNetworkProxy::operator=(const QNetworkProxy &other)\n", false, &_init_f_operator_eq__2686, &_call_f_operator_eq__2686); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QNetworkProxy::operator==(const QNetworkProxy &other)\n", true, &_init_f_operator_eq__eq__c2686, &_call_f_operator_eq__eq__c2686); - methods += new qt_gsi::GenericMethod (":password", "@brief Method QString QNetworkProxy::password()\n", true, &_init_f_password_c0, &_call_f_password_c0); - methods += new qt_gsi::GenericMethod (":port", "@brief Method quint16 QNetworkProxy::port()\n", true, &_init_f_port_c0, &_call_f_port_c0); - methods += new qt_gsi::GenericMethod ("rawHeader", "@brief Method QByteArray QNetworkProxy::rawHeader(const QByteArray &headerName)\n", true, &_init_f_rawHeader_c2309, &_call_f_rawHeader_c2309); - methods += new qt_gsi::GenericMethod ("rawHeaderList", "@brief Method QList QNetworkProxy::rawHeaderList()\n", true, &_init_f_rawHeaderList_c0, &_call_f_rawHeaderList_c0); - methods += new qt_gsi::GenericMethod ("setCapabilities|capabilities=", "@brief Method void QNetworkProxy::setCapabilities(QFlags capab)\n", false, &_init_f_setCapabilities_3647, &_call_f_setCapabilities_3647); - methods += new qt_gsi::GenericMethod ("setHeader", "@brief Method void QNetworkProxy::setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value)\n", false, &_init_f_setHeader_5360, &_call_f_setHeader_5360); - methods += new qt_gsi::GenericMethod ("setHostName|hostName=", "@brief Method void QNetworkProxy::setHostName(const QString &hostName)\n", false, &_init_f_setHostName_2025, &_call_f_setHostName_2025); - methods += new qt_gsi::GenericMethod ("setPassword|password=", "@brief Method void QNetworkProxy::setPassword(const QString &password)\n", false, &_init_f_setPassword_2025, &_call_f_setPassword_2025); - methods += new qt_gsi::GenericMethod ("setPort|port=", "@brief Method void QNetworkProxy::setPort(quint16 port)\n", false, &_init_f_setPort_1100, &_call_f_setPort_1100); - methods += new qt_gsi::GenericMethod ("setRawHeader", "@brief Method void QNetworkProxy::setRawHeader(const QByteArray &headerName, const QByteArray &value)\n", false, &_init_f_setRawHeader_4510, &_call_f_setRawHeader_4510); - methods += new qt_gsi::GenericMethod ("setType|type=", "@brief Method void QNetworkProxy::setType(QNetworkProxy::ProxyType type)\n", false, &_init_f_setType_2889, &_call_f_setType_2889); - methods += new qt_gsi::GenericMethod ("setUser|user=", "@brief Method void QNetworkProxy::setUser(const QString &userName)\n", false, &_init_f_setUser_2025, &_call_f_setUser_2025); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QNetworkProxy::swap(QNetworkProxy &other)\n", false, &_init_f_swap_1991, &_call_f_swap_1991); - methods += new qt_gsi::GenericMethod (":type", "@brief Method QNetworkProxy::ProxyType QNetworkProxy::type()\n", true, &_init_f_type_c0, &_call_f_type_c0); - methods += new qt_gsi::GenericMethod (":user", "@brief Method QString QNetworkProxy::user()\n", true, &_init_f_user_c0, &_call_f_user_c0); - methods += new qt_gsi::GenericStaticMethod (":applicationProxy", "@brief Static method QNetworkProxy QNetworkProxy::applicationProxy()\nThis method is static and can be called without an instance.", &_init_f_applicationProxy_0, &_call_f_applicationProxy_0); - methods += new qt_gsi::GenericStaticMethod ("setApplicationProxy|applicationProxy=", "@brief Static method void QNetworkProxy::setApplicationProxy(const QNetworkProxy &proxy)\nThis method is static and can be called without an instance.", &_init_f_setApplicationProxy_2686, &_call_f_setApplicationProxy_2686); - return methods; -} - -gsi::Class decl_QNetworkProxy ("QtMultimedia", "QNetworkProxy", - methods_QNetworkProxy (), - "@qt\n@brief Binding of QNetworkProxy"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkProxy () { return decl_QNetworkProxy; } - -} - - -// Implementation of the enum wrapper class for QNetworkProxy::Capability -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkProxy_Capability_Enum ("QtMultimedia", "QNetworkProxy_Capability", - gsi::enum_const ("TunnelingCapability", QNetworkProxy::TunnelingCapability, "@brief Enum constant QNetworkProxy::TunnelingCapability") + - gsi::enum_const ("ListeningCapability", QNetworkProxy::ListeningCapability, "@brief Enum constant QNetworkProxy::ListeningCapability") + - gsi::enum_const ("UdpTunnelingCapability", QNetworkProxy::UdpTunnelingCapability, "@brief Enum constant QNetworkProxy::UdpTunnelingCapability") + - gsi::enum_const ("CachingCapability", QNetworkProxy::CachingCapability, "@brief Enum constant QNetworkProxy::CachingCapability") + - gsi::enum_const ("HostNameLookupCapability", QNetworkProxy::HostNameLookupCapability, "@brief Enum constant QNetworkProxy::HostNameLookupCapability"), - "@qt\n@brief This class represents the QNetworkProxy::Capability enum"); - -static gsi::QFlagsClass decl_QNetworkProxy_Capability_Enums ("QtMultimedia", "QNetworkProxy_QFlags_Capability", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkProxy_Capability_Enum_in_parent (decl_QNetworkProxy_Capability_Enum.defs ()); -static gsi::ClassExt decl_QNetworkProxy_Capability_Enum_as_child (decl_QNetworkProxy_Capability_Enum, "Capability"); -static gsi::ClassExt decl_QNetworkProxy_Capability_Enums_as_child (decl_QNetworkProxy_Capability_Enums, "QFlags_Capability"); - -} - - -// Implementation of the enum wrapper class for QNetworkProxy::ProxyType -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkProxy_ProxyType_Enum ("QtMultimedia", "QNetworkProxy_ProxyType", - gsi::enum_const ("DefaultProxy", QNetworkProxy::DefaultProxy, "@brief Enum constant QNetworkProxy::DefaultProxy") + - gsi::enum_const ("Socks5Proxy", QNetworkProxy::Socks5Proxy, "@brief Enum constant QNetworkProxy::Socks5Proxy") + - gsi::enum_const ("NoProxy", QNetworkProxy::NoProxy, "@brief Enum constant QNetworkProxy::NoProxy") + - gsi::enum_const ("HttpProxy", QNetworkProxy::HttpProxy, "@brief Enum constant QNetworkProxy::HttpProxy") + - gsi::enum_const ("HttpCachingProxy", QNetworkProxy::HttpCachingProxy, "@brief Enum constant QNetworkProxy::HttpCachingProxy") + - gsi::enum_const ("FtpCachingProxy", QNetworkProxy::FtpCachingProxy, "@brief Enum constant QNetworkProxy::FtpCachingProxy"), - "@qt\n@brief This class represents the QNetworkProxy::ProxyType enum"); - -static gsi::QFlagsClass decl_QNetworkProxy_ProxyType_Enums ("QtMultimedia", "QNetworkProxy_QFlags_ProxyType", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkProxy_ProxyType_Enum_in_parent (decl_QNetworkProxy_ProxyType_Enum.defs ()); -static gsi::ClassExt decl_QNetworkProxy_ProxyType_Enum_as_child (decl_QNetworkProxy_ProxyType_Enum, "ProxyType"); -static gsi::ClassExt decl_QNetworkProxy_ProxyType_Enums_as_child (decl_QNetworkProxy_ProxyType_Enums, "QFlags_ProxyType"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxyFactory.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxyFactory.cc deleted file mode 100644 index 8f1aa6c00..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxyFactory.cc +++ /dev/null @@ -1,248 +0,0 @@ - -/* - - 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 gsiDeclQNetworkProxyFactory.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkProxyFactory - -// QList QNetworkProxyFactory::queryProxy(const QNetworkProxyQuery &query) - - -static void _init_f_queryProxy_3220 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("query", true, "QNetworkProxyQuery()"); - decl->add_arg (argspec_0); - decl->set_return > (); -} - -static void _call_f_queryProxy_3220 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxyQuery &arg1 = args ? args.read (heap) : (const QNetworkProxyQuery &)(QNetworkProxyQuery()); - ret.write > ((QList)((QNetworkProxyFactory *)cls)->queryProxy (arg1)); -} - - -// static QList QNetworkProxyFactory::proxyForQuery(const QNetworkProxyQuery &query) - - -static void _init_f_proxyForQuery_3220 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("query"); - decl->add_arg (argspec_0); - decl->set_return > (); -} - -static void _call_f_proxyForQuery_3220 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); - ret.write > ((QList)QNetworkProxyFactory::proxyForQuery (arg1)); -} - - -// static void QNetworkProxyFactory::setApplicationProxyFactory(QNetworkProxyFactory *factory) - - -static void _init_f_setApplicationProxyFactory_2723 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("factory"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setApplicationProxyFactory_2723 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkProxyFactory *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QNetworkProxyFactory::setApplicationProxyFactory (arg1); -} - - -// static void QNetworkProxyFactory::setUseSystemConfiguration(bool enable) - - -static void _init_f_setUseSystemConfiguration_864 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("enable"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setUseSystemConfiguration_864 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - bool arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QNetworkProxyFactory::setUseSystemConfiguration (arg1); -} - - -// static QList QNetworkProxyFactory::systemProxyForQuery(const QNetworkProxyQuery &query) - - -static void _init_f_systemProxyForQuery_3220 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("query", true, "QNetworkProxyQuery()"); - decl->add_arg (argspec_0); - decl->set_return > (); -} - -static void _call_f_systemProxyForQuery_3220 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxyQuery &arg1 = args ? args.read (heap) : (const QNetworkProxyQuery &)(QNetworkProxyQuery()); - ret.write > ((QList)QNetworkProxyFactory::systemProxyForQuery (arg1)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkProxyFactory () { - gsi::Methods methods; - methods += new qt_gsi::GenericMethod ("queryProxy", "@brief Method QList QNetworkProxyFactory::queryProxy(const QNetworkProxyQuery &query)\n", false, &_init_f_queryProxy_3220, &_call_f_queryProxy_3220); - methods += new qt_gsi::GenericStaticMethod ("proxyForQuery", "@brief Static method QList QNetworkProxyFactory::proxyForQuery(const QNetworkProxyQuery &query)\nThis method is static and can be called without an instance.", &_init_f_proxyForQuery_3220, &_call_f_proxyForQuery_3220); - methods += new qt_gsi::GenericStaticMethod ("setApplicationProxyFactory", "@brief Static method void QNetworkProxyFactory::setApplicationProxyFactory(QNetworkProxyFactory *factory)\nThis method is static and can be called without an instance.", &_init_f_setApplicationProxyFactory_2723, &_call_f_setApplicationProxyFactory_2723); - methods += new qt_gsi::GenericStaticMethod ("setUseSystemConfiguration", "@brief Static method void QNetworkProxyFactory::setUseSystemConfiguration(bool enable)\nThis method is static and can be called without an instance.", &_init_f_setUseSystemConfiguration_864, &_call_f_setUseSystemConfiguration_864); - methods += new qt_gsi::GenericStaticMethod ("systemProxyForQuery", "@brief Static method QList QNetworkProxyFactory::systemProxyForQuery(const QNetworkProxyQuery &query)\nThis method is static and can be called without an instance.", &_init_f_systemProxyForQuery_3220, &_call_f_systemProxyForQuery_3220); - return methods; -} - -gsi::Class decl_QNetworkProxyFactory ("QtMultimedia", "QNetworkProxyFactory_Native", - methods_QNetworkProxyFactory (), - "@hide\n@alias QNetworkProxyFactory"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkProxyFactory () { return decl_QNetworkProxyFactory; } - -} - - -class QNetworkProxyFactory_Adaptor : public QNetworkProxyFactory, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QNetworkProxyFactory_Adaptor(); - - // [adaptor ctor] QNetworkProxyFactory::QNetworkProxyFactory() - QNetworkProxyFactory_Adaptor() : QNetworkProxyFactory() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor impl] QList QNetworkProxyFactory::queryProxy(const QNetworkProxyQuery &query) - QList cbs_queryProxy_3220_1(const QNetworkProxyQuery &query) - { - __SUPPRESS_UNUSED_WARNING (query); - throw qt_gsi::AbstractMethodCalledException("queryProxy"); - } - - virtual QList queryProxy(const QNetworkProxyQuery &query) - { - if (cb_queryProxy_3220_1.can_issue()) { - return cb_queryProxy_3220_1.issue, const QNetworkProxyQuery &>(&QNetworkProxyFactory_Adaptor::cbs_queryProxy_3220_1, query); - } else { - throw qt_gsi::AbstractMethodCalledException("queryProxy"); - } - } - - gsi::Callback cb_queryProxy_3220_1; -}; - -QNetworkProxyFactory_Adaptor::~QNetworkProxyFactory_Adaptor() { } - -// Constructor QNetworkProxyFactory::QNetworkProxyFactory() (adaptor class) - -static void _init_ctor_QNetworkProxyFactory_Adaptor_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyFactory_Adaptor_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QNetworkProxyFactory_Adaptor ()); -} - - -// QList QNetworkProxyFactory::queryProxy(const QNetworkProxyQuery &query) - -static void _init_cbs_queryProxy_3220_1 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("query"); - decl->add_arg (argspec_0); - decl->set_return > (); -} - -static void _call_cbs_queryProxy_3220_1 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); - ret.write > ((QList)((QNetworkProxyFactory_Adaptor *)cls)->cbs_queryProxy_3220_1 (arg1)); -} - -static void _set_callback_cbs_queryProxy_3220_1 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkProxyFactory_Adaptor *)cls)->cb_queryProxy_3220_1 = cb; -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QNetworkProxyFactory (); - -static gsi::Methods methods_QNetworkProxyFactory_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyFactory::QNetworkProxyFactory()\nThis method creates an object of class QNetworkProxyFactory.", &_init_ctor_QNetworkProxyFactory_Adaptor_0, &_call_ctor_QNetworkProxyFactory_Adaptor_0); - methods += new qt_gsi::GenericMethod ("queryProxy", "@hide", false, &_init_cbs_queryProxy_3220_1, &_call_cbs_queryProxy_3220_1); - methods += new qt_gsi::GenericMethod ("queryProxy", "@brief Virtual method QList QNetworkProxyFactory::queryProxy(const QNetworkProxyQuery &query)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_queryProxy_3220_1, &_call_cbs_queryProxy_3220_1, &_set_callback_cbs_queryProxy_3220_1); - return methods; -} - -gsi::Class decl_QNetworkProxyFactory_Adaptor (qtdecl_QNetworkProxyFactory (), "QtMultimedia", "QNetworkProxyFactory", - methods_QNetworkProxyFactory_Adaptor (), - "@qt\n@brief Binding of QNetworkProxyFactory"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxyQuery.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxyQuery.cc deleted file mode 100644 index fc6165d4b..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkProxyQuery.cc +++ /dev/null @@ -1,621 +0,0 @@ - -/* - - 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 gsiDeclQNetworkProxyQuery.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkProxyQuery - -// Constructor QNetworkProxyQuery::QNetworkProxyQuery() - - -static void _init_ctor_QNetworkProxyQuery_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyQuery_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QNetworkProxyQuery ()); -} - - -// Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QUrl &requestUrl, QNetworkProxyQuery::QueryType queryType) - - -static void _init_ctor_QNetworkProxyQuery_5004 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("requestUrl"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("queryType", true, "QNetworkProxyQuery::UrlRequest"); - decl->add_arg::target_type & > (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyQuery_5004 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::UrlRequest)); - ret.write (new QNetworkProxyQuery (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); -} - - -// Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QString &hostname, int port, const QString &protocolTag, QNetworkProxyQuery::QueryType queryType) - - -static void _init_ctor_QNetworkProxyQuery_7904 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostname"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("protocolTag", true, "QString()"); - decl->add_arg (argspec_2); - static gsi::ArgSpecBase argspec_3 ("queryType", true, "QNetworkProxyQuery::TcpSocket"); - decl->add_arg::target_type & > (argspec_3); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyQuery_7904 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpSocket)); - ret.write (new QNetworkProxyQuery (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); -} - - -// Constructor QNetworkProxyQuery::QNetworkProxyQuery(quint16 bindPort, const QString &protocolTag, QNetworkProxyQuery::QueryType queryType) - - -static void _init_ctor_QNetworkProxyQuery_6320 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("bindPort"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("protocolTag", true, "QString()"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("queryType", true, "QNetworkProxyQuery::TcpServer"); - decl->add_arg::target_type & > (argspec_2); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyQuery_6320 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - quint16 arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpServer)); - ret.write (new QNetworkProxyQuery (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); -} - - -// Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QNetworkProxyQuery &other) - - -static void _init_ctor_QNetworkProxyQuery_3220 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyQuery_3220 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); - ret.write (new QNetworkProxyQuery (arg1)); -} - - -// Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QNetworkConfiguration &networkConfiguration, const QUrl &requestUrl, QNetworkProxyQuery::QueryType queryType) - - -static void _init_ctor_QNetworkProxyQuery_8404 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("networkConfiguration"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("requestUrl"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("queryType", true, "QNetworkProxyQuery::UrlRequest"); - decl->add_arg::target_type & > (argspec_2); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyQuery_8404 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::UrlRequest)); - ret.write (new QNetworkProxyQuery (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); -} - - -// Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QNetworkConfiguration &networkConfiguration, const QString &hostname, int port, const QString &protocolTag, QNetworkProxyQuery::QueryType queryType) - - -static void _init_ctor_QNetworkProxyQuery_11304 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("networkConfiguration"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("hostname"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("port"); - decl->add_arg (argspec_2); - static gsi::ArgSpecBase argspec_3 ("protocolTag", true, "QString()"); - decl->add_arg (argspec_3); - static gsi::ArgSpecBase argspec_4 ("queryType", true, "QNetworkProxyQuery::TcpSocket"); - decl->add_arg::target_type & > (argspec_4); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyQuery_11304 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpSocket)); - ret.write (new QNetworkProxyQuery (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); -} - - -// Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QNetworkConfiguration &networkConfiguration, quint16 bindPort, const QString &protocolTag, QNetworkProxyQuery::QueryType queryType) - - -static void _init_ctor_QNetworkProxyQuery_9720 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("networkConfiguration"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("bindPort"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("protocolTag", true, "QString()"); - decl->add_arg (argspec_2); - static gsi::ArgSpecBase argspec_3 ("queryType", true, "QNetworkProxyQuery::TcpServer"); - decl->add_arg::target_type & > (argspec_3); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkProxyQuery_9720 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpServer)); - ret.write (new QNetworkProxyQuery (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); -} - - -// int QNetworkProxyQuery::localPort() - - -static void _init_f_localPort_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_localPort_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkProxyQuery *)cls)->localPort ()); -} - - -// QNetworkConfiguration QNetworkProxyQuery::networkConfiguration() - - -static void _init_f_networkConfiguration_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_networkConfiguration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkConfiguration)((QNetworkProxyQuery *)cls)->networkConfiguration ()); -} - - -// bool QNetworkProxyQuery::operator!=(const QNetworkProxyQuery &other) - - -static void _init_f_operator_excl__eq__c3220 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c3220 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); - ret.write ((bool)((QNetworkProxyQuery *)cls)->operator!= (arg1)); -} - - -// QNetworkProxyQuery &QNetworkProxyQuery::operator=(const QNetworkProxyQuery &other) - - -static void _init_f_operator_eq__3220 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3220 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); - ret.write ((QNetworkProxyQuery &)((QNetworkProxyQuery *)cls)->operator= (arg1)); -} - - -// bool QNetworkProxyQuery::operator==(const QNetworkProxyQuery &other) - - -static void _init_f_operator_eq__eq__c3220 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c3220 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); - ret.write ((bool)((QNetworkProxyQuery *)cls)->operator== (arg1)); -} - - -// QString QNetworkProxyQuery::peerHostName() - - -static void _init_f_peerHostName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerHostName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkProxyQuery *)cls)->peerHostName ()); -} - - -// int QNetworkProxyQuery::peerPort() - - -static void _init_f_peerPort_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerPort_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkProxyQuery *)cls)->peerPort ()); -} - - -// QString QNetworkProxyQuery::protocolTag() - - -static void _init_f_protocolTag_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_protocolTag_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkProxyQuery *)cls)->protocolTag ()); -} - - -// QNetworkProxyQuery::QueryType QNetworkProxyQuery::queryType() - - -static void _init_f_queryType_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_queryType_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkProxyQuery *)cls)->queryType ())); -} - - -// void QNetworkProxyQuery::setLocalPort(int port) - - -static void _init_f_setLocalPort_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("port"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setLocalPort_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxyQuery *)cls)->setLocalPort (arg1); -} - - -// void QNetworkProxyQuery::setNetworkConfiguration(const QNetworkConfiguration &networkConfiguration) - - -static void _init_f_setNetworkConfiguration_3508 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("networkConfiguration"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setNetworkConfiguration_3508 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxyQuery *)cls)->setNetworkConfiguration (arg1); -} - - -// void QNetworkProxyQuery::setPeerHostName(const QString &hostname) - - -static void _init_f_setPeerHostName_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostname"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPeerHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxyQuery *)cls)->setPeerHostName (arg1); -} - - -// void QNetworkProxyQuery::setPeerPort(int port) - - -static void _init_f_setPeerPort_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("port"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPeerPort_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxyQuery *)cls)->setPeerPort (arg1); -} - - -// void QNetworkProxyQuery::setProtocolTag(const QString &protocolTag) - - -static void _init_f_setProtocolTag_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("protocolTag"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setProtocolTag_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxyQuery *)cls)->setProtocolTag (arg1); -} - - -// void QNetworkProxyQuery::setQueryType(QNetworkProxyQuery::QueryType type) - - -static void _init_f_setQueryType_3411 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("type"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setQueryType_3411 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxyQuery *)cls)->setQueryType (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// void QNetworkProxyQuery::setUrl(const QUrl &url) - - -static void _init_f_setUrl_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxyQuery *)cls)->setUrl (arg1); -} - - -// void QNetworkProxyQuery::swap(QNetworkProxyQuery &other) - - -static void _init_f_swap_2525 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2525 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkProxyQuery &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkProxyQuery *)cls)->swap (arg1); -} - - -// QUrl QNetworkProxyQuery::url() - - -static void _init_f_url_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_url_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QUrl)((QNetworkProxyQuery *)cls)->url ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkProxyQuery () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyQuery::QNetworkProxyQuery()\nThis method creates an object of class QNetworkProxyQuery.", &_init_ctor_QNetworkProxyQuery_0, &_call_ctor_QNetworkProxyQuery_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QUrl &requestUrl, QNetworkProxyQuery::QueryType queryType)\nThis method creates an object of class QNetworkProxyQuery.", &_init_ctor_QNetworkProxyQuery_5004, &_call_ctor_QNetworkProxyQuery_5004); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QString &hostname, int port, const QString &protocolTag, QNetworkProxyQuery::QueryType queryType)\nThis method creates an object of class QNetworkProxyQuery.", &_init_ctor_QNetworkProxyQuery_7904, &_call_ctor_QNetworkProxyQuery_7904); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyQuery::QNetworkProxyQuery(quint16 bindPort, const QString &protocolTag, QNetworkProxyQuery::QueryType queryType)\nThis method creates an object of class QNetworkProxyQuery.", &_init_ctor_QNetworkProxyQuery_6320, &_call_ctor_QNetworkProxyQuery_6320); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QNetworkProxyQuery &other)\nThis method creates an object of class QNetworkProxyQuery.", &_init_ctor_QNetworkProxyQuery_3220, &_call_ctor_QNetworkProxyQuery_3220); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QNetworkConfiguration &networkConfiguration, const QUrl &requestUrl, QNetworkProxyQuery::QueryType queryType)\nThis method creates an object of class QNetworkProxyQuery.", &_init_ctor_QNetworkProxyQuery_8404, &_call_ctor_QNetworkProxyQuery_8404); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QNetworkConfiguration &networkConfiguration, const QString &hostname, int port, const QString &protocolTag, QNetworkProxyQuery::QueryType queryType)\nThis method creates an object of class QNetworkProxyQuery.", &_init_ctor_QNetworkProxyQuery_11304, &_call_ctor_QNetworkProxyQuery_11304); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkProxyQuery::QNetworkProxyQuery(const QNetworkConfiguration &networkConfiguration, quint16 bindPort, const QString &protocolTag, QNetworkProxyQuery::QueryType queryType)\nThis method creates an object of class QNetworkProxyQuery.", &_init_ctor_QNetworkProxyQuery_9720, &_call_ctor_QNetworkProxyQuery_9720); - methods += new qt_gsi::GenericMethod (":localPort", "@brief Method int QNetworkProxyQuery::localPort()\n", true, &_init_f_localPort_c0, &_call_f_localPort_c0); - methods += new qt_gsi::GenericMethod (":networkConfiguration", "@brief Method QNetworkConfiguration QNetworkProxyQuery::networkConfiguration()\n", true, &_init_f_networkConfiguration_c0, &_call_f_networkConfiguration_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QNetworkProxyQuery::operator!=(const QNetworkProxyQuery &other)\n", true, &_init_f_operator_excl__eq__c3220, &_call_f_operator_excl__eq__c3220); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QNetworkProxyQuery &QNetworkProxyQuery::operator=(const QNetworkProxyQuery &other)\n", false, &_init_f_operator_eq__3220, &_call_f_operator_eq__3220); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QNetworkProxyQuery::operator==(const QNetworkProxyQuery &other)\n", true, &_init_f_operator_eq__eq__c3220, &_call_f_operator_eq__eq__c3220); - methods += new qt_gsi::GenericMethod (":peerHostName", "@brief Method QString QNetworkProxyQuery::peerHostName()\n", true, &_init_f_peerHostName_c0, &_call_f_peerHostName_c0); - methods += new qt_gsi::GenericMethod (":peerPort", "@brief Method int QNetworkProxyQuery::peerPort()\n", true, &_init_f_peerPort_c0, &_call_f_peerPort_c0); - methods += new qt_gsi::GenericMethod (":protocolTag", "@brief Method QString QNetworkProxyQuery::protocolTag()\n", true, &_init_f_protocolTag_c0, &_call_f_protocolTag_c0); - methods += new qt_gsi::GenericMethod (":queryType", "@brief Method QNetworkProxyQuery::QueryType QNetworkProxyQuery::queryType()\n", true, &_init_f_queryType_c0, &_call_f_queryType_c0); - methods += new qt_gsi::GenericMethod ("setLocalPort|localPort=", "@brief Method void QNetworkProxyQuery::setLocalPort(int port)\n", false, &_init_f_setLocalPort_767, &_call_f_setLocalPort_767); - methods += new qt_gsi::GenericMethod ("setNetworkConfiguration|networkConfiguration=", "@brief Method void QNetworkProxyQuery::setNetworkConfiguration(const QNetworkConfiguration &networkConfiguration)\n", false, &_init_f_setNetworkConfiguration_3508, &_call_f_setNetworkConfiguration_3508); - methods += new qt_gsi::GenericMethod ("setPeerHostName|peerHostName=", "@brief Method void QNetworkProxyQuery::setPeerHostName(const QString &hostname)\n", false, &_init_f_setPeerHostName_2025, &_call_f_setPeerHostName_2025); - methods += new qt_gsi::GenericMethod ("setPeerPort|peerPort=", "@brief Method void QNetworkProxyQuery::setPeerPort(int port)\n", false, &_init_f_setPeerPort_767, &_call_f_setPeerPort_767); - methods += new qt_gsi::GenericMethod ("setProtocolTag|protocolTag=", "@brief Method void QNetworkProxyQuery::setProtocolTag(const QString &protocolTag)\n", false, &_init_f_setProtocolTag_2025, &_call_f_setProtocolTag_2025); - methods += new qt_gsi::GenericMethod ("setQueryType|queryType=", "@brief Method void QNetworkProxyQuery::setQueryType(QNetworkProxyQuery::QueryType type)\n", false, &_init_f_setQueryType_3411, &_call_f_setQueryType_3411); - methods += new qt_gsi::GenericMethod ("setUrl|url=", "@brief Method void QNetworkProxyQuery::setUrl(const QUrl &url)\n", false, &_init_f_setUrl_1701, &_call_f_setUrl_1701); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QNetworkProxyQuery::swap(QNetworkProxyQuery &other)\n", false, &_init_f_swap_2525, &_call_f_swap_2525); - methods += new qt_gsi::GenericMethod (":url", "@brief Method QUrl QNetworkProxyQuery::url()\n", true, &_init_f_url_c0, &_call_f_url_c0); - return methods; -} - -gsi::Class decl_QNetworkProxyQuery ("QtMultimedia", "QNetworkProxyQuery", - methods_QNetworkProxyQuery (), - "@qt\n@brief Binding of QNetworkProxyQuery"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkProxyQuery () { return decl_QNetworkProxyQuery; } - -} - - -// Implementation of the enum wrapper class for QNetworkProxyQuery::QueryType -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkProxyQuery_QueryType_Enum ("QtMultimedia", "QNetworkProxyQuery_QueryType", - gsi::enum_const ("TcpSocket", QNetworkProxyQuery::TcpSocket, "@brief Enum constant QNetworkProxyQuery::TcpSocket") + - gsi::enum_const ("UdpSocket", QNetworkProxyQuery::UdpSocket, "@brief Enum constant QNetworkProxyQuery::UdpSocket") + - gsi::enum_const ("TcpServer", QNetworkProxyQuery::TcpServer, "@brief Enum constant QNetworkProxyQuery::TcpServer") + - gsi::enum_const ("UrlRequest", QNetworkProxyQuery::UrlRequest, "@brief Enum constant QNetworkProxyQuery::UrlRequest"), - "@qt\n@brief This class represents the QNetworkProxyQuery::QueryType enum"); - -static gsi::QFlagsClass decl_QNetworkProxyQuery_QueryType_Enums ("QtMultimedia", "QNetworkProxyQuery_QFlags_QueryType", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkProxyQuery_QueryType_Enum_in_parent (decl_QNetworkProxyQuery_QueryType_Enum.defs ()); -static gsi::ClassExt decl_QNetworkProxyQuery_QueryType_Enum_as_child (decl_QNetworkProxyQuery_QueryType_Enum, "QueryType"); -static gsi::ClassExt decl_QNetworkProxyQuery_QueryType_Enums_as_child (decl_QNetworkProxyQuery_QueryType_Enums, "QFlags_QueryType"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkReply.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkReply.cc deleted file mode 100644 index b055e5e11..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkReply.cc +++ /dev/null @@ -1,583 +0,0 @@ - -/* - - 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 gsiDeclQNetworkReply.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkReply - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QNetworkReply::staticMetaObject); -} - - -// void QNetworkReply::abort() - - -static void _init_f_abort_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkReply *)cls)->abort (); -} - - -// QVariant QNetworkReply::attribute(QNetworkRequest::Attribute code) - - -static void _init_f_attribute_c3072 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("code"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_attribute_c3072 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((QVariant)((QNetworkReply *)cls)->attribute (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// () - - -static void _init_f_close_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_close_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkReply *)cls)->close (); -} - - -// QNetworkReply::NetworkError QNetworkReply::error() - - -static void _init_f_error_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_error_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkReply *)cls)->error ())); -} - - -// bool QNetworkReply::hasRawHeader(const QByteArray &headerName) - - -static void _init_f_hasRawHeader_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_hasRawHeader_c2309 (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 (heap); - ret.write ((bool)((QNetworkReply *)cls)->hasRawHeader (arg1)); -} - - -// QVariant QNetworkReply::header(QNetworkRequest::KnownHeaders header) - - -static void _init_f_header_c3349 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("header"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_header_c3349 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((QVariant)((QNetworkReply *)cls)->header (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// void QNetworkReply::ignoreSslErrors(const QList &errors) - - -static void _init_f_ignoreSslErrors_2837 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("errors"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_ignoreSslErrors_2837 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkReply *)cls)->ignoreSslErrors (arg1); -} - - -// void QNetworkReply::ignoreSslErrors() - - -static void _init_f_ignoreSslErrors_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_ignoreSslErrors_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkReply *)cls)->ignoreSslErrors (); -} - - -// bool QNetworkReply::isFinished() - - -static void _init_f_isFinished_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isFinished_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkReply *)cls)->isFinished ()); -} - - -// bool QNetworkReply::isRunning() - - -static void _init_f_isRunning_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isRunning_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkReply *)cls)->isRunning ()); -} - - -// () const - - -static void _init_f_isSequential_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isSequential_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkReply *)cls)->isSequential ()); -} - - -// QNetworkAccessManager *QNetworkReply::manager() - - -static void _init_f_manager_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_manager_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkAccessManager *)((QNetworkReply *)cls)->manager ()); -} - - -// QNetworkAccessManager::Operation QNetworkReply::operation() - - -static void _init_f_operation_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_operation_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkReply *)cls)->operation ())); -} - - -// QByteArray QNetworkReply::rawHeader(const QByteArray &headerName) - - -static void _init_f_rawHeader_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_rawHeader_c2309 (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 (heap); - ret.write ((QByteArray)((QNetworkReply *)cls)->rawHeader (arg1)); -} - - -// QList QNetworkReply::rawHeaderList() - - -static void _init_f_rawHeaderList_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_rawHeaderList_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QNetworkReply *)cls)->rawHeaderList ()); -} - - -// const QList &QNetworkReply::rawHeaderPairs() - - -static void _init_f_rawHeaderPairs_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return & > (); -} - -static void _call_f_rawHeaderPairs_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write & > ((const QList &)((QNetworkReply *)cls)->rawHeaderPairs ()); -} - - -// qint64 QNetworkReply::readBufferSize() - - -static void _init_f_readBufferSize_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_readBufferSize_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QNetworkReply *)cls)->readBufferSize ()); -} - - -// QNetworkRequest QNetworkReply::request() - - -static void _init_f_request_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_request_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkRequest)((QNetworkReply *)cls)->request ()); -} - - -// void QNetworkReply::setReadBufferSize(qint64 size) - - -static void _init_f_setReadBufferSize_986 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("size"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - qint64 arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkReply *)cls)->setReadBufferSize (arg1); -} - - -// void QNetworkReply::setSslConfiguration(const QSslConfiguration &configuration) - - -static void _init_f_setSslConfiguration_3068 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("configuration"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkReply *)cls)->setSslConfiguration (arg1); -} - - -// QSslConfiguration QNetworkReply::sslConfiguration() - - -static void _init_f_sslConfiguration_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sslConfiguration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslConfiguration)((QNetworkReply *)cls)->sslConfiguration ()); -} - - -// QUrl QNetworkReply::url() - - -static void _init_f_url_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_url_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QUrl)((QNetworkReply *)cls)->url ()); -} - - -// static QString QNetworkReply::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkReply::tr (arg1, arg2, arg3)); -} - - -// static QString QNetworkReply::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkReply::trUtf8 (arg1, arg2, arg3)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkReply () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("abort", "@brief Method void QNetworkReply::abort()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("attribute", "@brief Method QVariant QNetworkReply::attribute(QNetworkRequest::Attribute code)\n", true, &_init_f_attribute_c3072, &_call_f_attribute_c3072); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QIODevice::close", false, &_init_f_close_0, &_call_f_close_0); - methods += new qt_gsi::GenericMethod ("error", "@brief Method QNetworkReply::NetworkError QNetworkReply::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); - methods += new qt_gsi::GenericMethod ("hasRawHeader", "@brief Method bool QNetworkReply::hasRawHeader(const QByteArray &headerName)\n", true, &_init_f_hasRawHeader_c2309, &_call_f_hasRawHeader_c2309); - methods += new qt_gsi::GenericMethod ("header", "@brief Method QVariant QNetworkReply::header(QNetworkRequest::KnownHeaders header)\n", true, &_init_f_header_c3349, &_call_f_header_c3349); - methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QNetworkReply::ignoreSslErrors(const QList &errors)\n", false, &_init_f_ignoreSslErrors_2837, &_call_f_ignoreSslErrors_2837); - methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QNetworkReply::ignoreSslErrors()\n", false, &_init_f_ignoreSslErrors_0, &_call_f_ignoreSslErrors_0); - methods += new qt_gsi::GenericMethod ("isFinished?", "@brief Method bool QNetworkReply::isFinished()\n", true, &_init_f_isFinished_c0, &_call_f_isFinished_c0); - methods += new qt_gsi::GenericMethod ("isRunning?", "@brief Method bool QNetworkReply::isRunning()\n", true, &_init_f_isRunning_c0, &_call_f_isRunning_c0); - methods += new qt_gsi::GenericMethod ("isSequential?", "@brief Method () const\nThis is a reimplementation of QIODevice::isSequential", true, &_init_f_isSequential_c0, &_call_f_isSequential_c0); - methods += new qt_gsi::GenericMethod ("manager", "@brief Method QNetworkAccessManager *QNetworkReply::manager()\n", true, &_init_f_manager_c0, &_call_f_manager_c0); - methods += new qt_gsi::GenericMethod ("operation", "@brief Method QNetworkAccessManager::Operation QNetworkReply::operation()\n", true, &_init_f_operation_c0, &_call_f_operation_c0); - methods += new qt_gsi::GenericMethod ("rawHeader", "@brief Method QByteArray QNetworkReply::rawHeader(const QByteArray &headerName)\n", true, &_init_f_rawHeader_c2309, &_call_f_rawHeader_c2309); - methods += new qt_gsi::GenericMethod ("rawHeaderList", "@brief Method QList QNetworkReply::rawHeaderList()\n", true, &_init_f_rawHeaderList_c0, &_call_f_rawHeaderList_c0); - methods += new qt_gsi::GenericMethod ("rawHeaderPairs", "@brief Method const QList &QNetworkReply::rawHeaderPairs()\n", true, &_init_f_rawHeaderPairs_c0, &_call_f_rawHeaderPairs_c0); - methods += new qt_gsi::GenericMethod (":readBufferSize", "@brief Method qint64 QNetworkReply::readBufferSize()\n", true, &_init_f_readBufferSize_c0, &_call_f_readBufferSize_c0); - methods += new qt_gsi::GenericMethod ("request", "@brief Method QNetworkRequest QNetworkReply::request()\n", true, &_init_f_request_c0, &_call_f_request_c0); - methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method void QNetworkReply::setReadBufferSize(qint64 size)\n", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); - methods += new qt_gsi::GenericMethod ("setSslConfiguration|sslConfiguration=", "@brief Method void QNetworkReply::setSslConfiguration(const QSslConfiguration &configuration)\n", false, &_init_f_setSslConfiguration_3068, &_call_f_setSslConfiguration_3068); - methods += new qt_gsi::GenericMethod (":sslConfiguration", "@brief Method QSslConfiguration QNetworkReply::sslConfiguration()\n", true, &_init_f_sslConfiguration_c0, &_call_f_sslConfiguration_c0); - methods += new qt_gsi::GenericMethod ("url", "@brief Method QUrl QNetworkReply::url()\n", true, &_init_f_url_c0, &_call_f_url_c0); - methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QNetworkReply::aboutToClose()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QNetworkReply::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QNetworkReply::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("downloadProgress(qint64, qint64)", "downloadProgress", gsi::arg("bytesReceived"), gsi::arg("bytesTotal"), "@brief Signal declaration for QNetworkReply::downloadProgress(qint64 bytesReceived, qint64 bytesTotal)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("encrypted()", "encrypted", "@brief Signal declaration for QNetworkReply::encrypted()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("error(QNetworkReply::NetworkError)", "error_sig", gsi::arg("arg1"), "@brief Signal declaration for QNetworkReply::error(QNetworkReply::NetworkError)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("finished()", "finished", "@brief Signal declaration for QNetworkReply::finished()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("metaDataChanged()", "metaDataChanged", "@brief Signal declaration for QNetworkReply::metaDataChanged()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("preSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator *)", "preSharedKeyAuthenticationRequired", gsi::arg("authenticator"), "@brief Signal declaration for QNetworkReply::preSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator *authenticator)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readChannelFinished()", "readChannelFinished", "@brief Signal declaration for QNetworkReply::readChannelFinished()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readyRead()", "readyRead", "@brief Signal declaration for QNetworkReply::readyRead()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal & > ("sslErrors(const QList &)", "sslErrors", gsi::arg("errors"), "@brief Signal declaration for QNetworkReply::sslErrors(const QList &errors)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("uploadProgress(qint64, qint64)", "uploadProgress", gsi::arg("bytesSent"), gsi::arg("bytesTotal"), "@brief Signal declaration for QNetworkReply::uploadProgress(qint64 bytesSent, qint64 bytesTotal)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkReply::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 QNetworkReply::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 &qtdecl_QIODevice (); - -qt_gsi::QtNativeClass decl_QNetworkReply (qtdecl_QIODevice (), "QtMultimedia", "QNetworkReply", - methods_QNetworkReply (), - "@qt\n@brief Binding of QNetworkReply"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkReply () { return decl_QNetworkReply; } - -} - - -// Implementation of the enum wrapper class for QNetworkReply::NetworkError -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkReply_NetworkError_Enum ("QtMultimedia", "QNetworkReply_NetworkError", - gsi::enum_const ("NoError", QNetworkReply::NoError, "@brief Enum constant QNetworkReply::NoError") + - gsi::enum_const ("ConnectionRefusedError", QNetworkReply::ConnectionRefusedError, "@brief Enum constant QNetworkReply::ConnectionRefusedError") + - gsi::enum_const ("RemoteHostClosedError", QNetworkReply::RemoteHostClosedError, "@brief Enum constant QNetworkReply::RemoteHostClosedError") + - gsi::enum_const ("HostNotFoundError", QNetworkReply::HostNotFoundError, "@brief Enum constant QNetworkReply::HostNotFoundError") + - gsi::enum_const ("TimeoutError", QNetworkReply::TimeoutError, "@brief Enum constant QNetworkReply::TimeoutError") + - gsi::enum_const ("OperationCanceledError", QNetworkReply::OperationCanceledError, "@brief Enum constant QNetworkReply::OperationCanceledError") + - gsi::enum_const ("SslHandshakeFailedError", QNetworkReply::SslHandshakeFailedError, "@brief Enum constant QNetworkReply::SslHandshakeFailedError") + - gsi::enum_const ("TemporaryNetworkFailureError", QNetworkReply::TemporaryNetworkFailureError, "@brief Enum constant QNetworkReply::TemporaryNetworkFailureError") + - gsi::enum_const ("NetworkSessionFailedError", QNetworkReply::NetworkSessionFailedError, "@brief Enum constant QNetworkReply::NetworkSessionFailedError") + - gsi::enum_const ("BackgroundRequestNotAllowedError", QNetworkReply::BackgroundRequestNotAllowedError, "@brief Enum constant QNetworkReply::BackgroundRequestNotAllowedError") + - gsi::enum_const ("UnknownNetworkError", QNetworkReply::UnknownNetworkError, "@brief Enum constant QNetworkReply::UnknownNetworkError") + - gsi::enum_const ("ProxyConnectionRefusedError", QNetworkReply::ProxyConnectionRefusedError, "@brief Enum constant QNetworkReply::ProxyConnectionRefusedError") + - gsi::enum_const ("ProxyConnectionClosedError", QNetworkReply::ProxyConnectionClosedError, "@brief Enum constant QNetworkReply::ProxyConnectionClosedError") + - gsi::enum_const ("ProxyNotFoundError", QNetworkReply::ProxyNotFoundError, "@brief Enum constant QNetworkReply::ProxyNotFoundError") + - gsi::enum_const ("ProxyTimeoutError", QNetworkReply::ProxyTimeoutError, "@brief Enum constant QNetworkReply::ProxyTimeoutError") + - gsi::enum_const ("ProxyAuthenticationRequiredError", QNetworkReply::ProxyAuthenticationRequiredError, "@brief Enum constant QNetworkReply::ProxyAuthenticationRequiredError") + - gsi::enum_const ("UnknownProxyError", QNetworkReply::UnknownProxyError, "@brief Enum constant QNetworkReply::UnknownProxyError") + - gsi::enum_const ("ContentAccessDenied", QNetworkReply::ContentAccessDenied, "@brief Enum constant QNetworkReply::ContentAccessDenied") + - gsi::enum_const ("ContentOperationNotPermittedError", QNetworkReply::ContentOperationNotPermittedError, "@brief Enum constant QNetworkReply::ContentOperationNotPermittedError") + - gsi::enum_const ("ContentNotFoundError", QNetworkReply::ContentNotFoundError, "@brief Enum constant QNetworkReply::ContentNotFoundError") + - gsi::enum_const ("AuthenticationRequiredError", QNetworkReply::AuthenticationRequiredError, "@brief Enum constant QNetworkReply::AuthenticationRequiredError") + - gsi::enum_const ("ContentReSendError", QNetworkReply::ContentReSendError, "@brief Enum constant QNetworkReply::ContentReSendError") + - gsi::enum_const ("ContentConflictError", QNetworkReply::ContentConflictError, "@brief Enum constant QNetworkReply::ContentConflictError") + - gsi::enum_const ("ContentGoneError", QNetworkReply::ContentGoneError, "@brief Enum constant QNetworkReply::ContentGoneError") + - gsi::enum_const ("UnknownContentError", QNetworkReply::UnknownContentError, "@brief Enum constant QNetworkReply::UnknownContentError") + - gsi::enum_const ("ProtocolUnknownError", QNetworkReply::ProtocolUnknownError, "@brief Enum constant QNetworkReply::ProtocolUnknownError") + - gsi::enum_const ("ProtocolInvalidOperationError", QNetworkReply::ProtocolInvalidOperationError, "@brief Enum constant QNetworkReply::ProtocolInvalidOperationError") + - gsi::enum_const ("ProtocolFailure", QNetworkReply::ProtocolFailure, "@brief Enum constant QNetworkReply::ProtocolFailure") + - gsi::enum_const ("InternalServerError", QNetworkReply::InternalServerError, "@brief Enum constant QNetworkReply::InternalServerError") + - gsi::enum_const ("OperationNotImplementedError", QNetworkReply::OperationNotImplementedError, "@brief Enum constant QNetworkReply::OperationNotImplementedError") + - gsi::enum_const ("ServiceUnavailableError", QNetworkReply::ServiceUnavailableError, "@brief Enum constant QNetworkReply::ServiceUnavailableError") + - gsi::enum_const ("UnknownServerError", QNetworkReply::UnknownServerError, "@brief Enum constant QNetworkReply::UnknownServerError"), - "@qt\n@brief This class represents the QNetworkReply::NetworkError enum"); - -static gsi::QFlagsClass decl_QNetworkReply_NetworkError_Enums ("QtMultimedia", "QNetworkReply_QFlags_NetworkError", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkReply_NetworkError_Enum_in_parent (decl_QNetworkReply_NetworkError_Enum.defs ()); -static gsi::ClassExt decl_QNetworkReply_NetworkError_Enum_as_child (decl_QNetworkReply_NetworkError_Enum, "NetworkError"); -static gsi::ClassExt decl_QNetworkReply_NetworkError_Enums_as_child (decl_QNetworkReply_NetworkError_Enums, "QFlags_NetworkError"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkRequest.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkRequest.cc deleted file mode 100644 index 2f420ea4d..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkRequest.cc +++ /dev/null @@ -1,588 +0,0 @@ - -/* - - 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 gsiDeclQNetworkRequest.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkRequest - -// Constructor QNetworkRequest::QNetworkRequest(const QUrl &url) - - -static void _init_ctor_QNetworkRequest_1701 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url", true, "QUrl()"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkRequest_1701 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args ? args.read (heap) : (const QUrl &)(QUrl()); - ret.write (new QNetworkRequest (arg1)); -} - - -// Constructor QNetworkRequest::QNetworkRequest(const QNetworkRequest &other) - - -static void _init_ctor_QNetworkRequest_2885 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkRequest_2885 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - ret.write (new QNetworkRequest (arg1)); -} - - -// QVariant QNetworkRequest::attribute(QNetworkRequest::Attribute code, const QVariant &defaultValue) - - -static void _init_f_attribute_c5083 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("code"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("defaultValue", true, "QVariant()"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_attribute_c5083 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args ? args.read (heap) : (const QVariant &)(QVariant()); - ret.write ((QVariant)((QNetworkRequest *)cls)->attribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); -} - - -// bool QNetworkRequest::hasRawHeader(const QByteArray &headerName) - - -static void _init_f_hasRawHeader_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_hasRawHeader_c2309 (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 (heap); - ret.write ((bool)((QNetworkRequest *)cls)->hasRawHeader (arg1)); -} - - -// QVariant QNetworkRequest::header(QNetworkRequest::KnownHeaders header) - - -static void _init_f_header_c3349 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("header"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_header_c3349 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((QVariant)((QNetworkRequest *)cls)->header (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// bool QNetworkRequest::operator!=(const QNetworkRequest &other) - - -static void _init_f_operator_excl__eq__c2885 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - ret.write ((bool)((QNetworkRequest *)cls)->operator!= (arg1)); -} - - -// QNetworkRequest &QNetworkRequest::operator=(const QNetworkRequest &other) - - -static void _init_f_operator_eq__2885 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - ret.write ((QNetworkRequest &)((QNetworkRequest *)cls)->operator= (arg1)); -} - - -// bool QNetworkRequest::operator==(const QNetworkRequest &other) - - -static void _init_f_operator_eq__eq__c2885 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - ret.write ((bool)((QNetworkRequest *)cls)->operator== (arg1)); -} - - -// QObject *QNetworkRequest::originatingObject() - - -static void _init_f_originatingObject_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_originatingObject_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QNetworkRequest *)cls)->originatingObject ()); -} - - -// QNetworkRequest::Priority QNetworkRequest::priority() - - -static void _init_f_priority_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_priority_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkRequest *)cls)->priority ())); -} - - -// QByteArray QNetworkRequest::rawHeader(const QByteArray &headerName) - - -static void _init_f_rawHeader_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_rawHeader_c2309 (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 (heap); - ret.write ((QByteArray)((QNetworkRequest *)cls)->rawHeader (arg1)); -} - - -// QList QNetworkRequest::rawHeaderList() - - -static void _init_f_rawHeaderList_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_rawHeaderList_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QNetworkRequest *)cls)->rawHeaderList ()); -} - - -// void QNetworkRequest::setAttribute(QNetworkRequest::Attribute code, const QVariant &value) - - -static void _init_f_setAttribute_5083 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("code"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setAttribute_5083 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkRequest *)cls)->setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); -} - - -// void QNetworkRequest::setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value) - - -static void _init_f_setHeader_5360 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("header"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setHeader_5360 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkRequest *)cls)->setHeader (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); -} - - -// void QNetworkRequest::setOriginatingObject(QObject *object) - - -static void _init_f_setOriginatingObject_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("object"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setOriginatingObject_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkRequest *)cls)->setOriginatingObject (arg1); -} - - -// void QNetworkRequest::setPriority(QNetworkRequest::Priority priority) - - -static void _init_f_setPriority_2990 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("priority"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setPriority_2990 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkRequest *)cls)->setPriority (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// void QNetworkRequest::setRawHeader(const QByteArray &headerName, const QByteArray &value) - - -static void _init_f_setRawHeader_4510 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("headerName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setRawHeader_4510 (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 (heap); - const QByteArray &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkRequest *)cls)->setRawHeader (arg1, arg2); -} - - -// void QNetworkRequest::setSslConfiguration(const QSslConfiguration &configuration) - - -static void _init_f_setSslConfiguration_3068 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("configuration"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkRequest *)cls)->setSslConfiguration (arg1); -} - - -// void QNetworkRequest::setUrl(const QUrl &url) - - -static void _init_f_setUrl_1701 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("url"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QUrl &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkRequest *)cls)->setUrl (arg1); -} - - -// QSslConfiguration QNetworkRequest::sslConfiguration() - - -static void _init_f_sslConfiguration_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sslConfiguration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslConfiguration)((QNetworkRequest *)cls)->sslConfiguration ()); -} - - -// void QNetworkRequest::swap(QNetworkRequest &other) - - -static void _init_f_swap_2190 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2190 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QNetworkRequest &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkRequest *)cls)->swap (arg1); -} - - -// QUrl QNetworkRequest::url() - - -static void _init_f_url_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_url_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QUrl)((QNetworkRequest *)cls)->url ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkRequest () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkRequest::QNetworkRequest(const QUrl &url)\nThis method creates an object of class QNetworkRequest.", &_init_ctor_QNetworkRequest_1701, &_call_ctor_QNetworkRequest_1701); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkRequest::QNetworkRequest(const QNetworkRequest &other)\nThis method creates an object of class QNetworkRequest.", &_init_ctor_QNetworkRequest_2885, &_call_ctor_QNetworkRequest_2885); - methods += new qt_gsi::GenericMethod ("attribute", "@brief Method QVariant QNetworkRequest::attribute(QNetworkRequest::Attribute code, const QVariant &defaultValue)\n", true, &_init_f_attribute_c5083, &_call_f_attribute_c5083); - methods += new qt_gsi::GenericMethod ("hasRawHeader", "@brief Method bool QNetworkRequest::hasRawHeader(const QByteArray &headerName)\n", true, &_init_f_hasRawHeader_c2309, &_call_f_hasRawHeader_c2309); - methods += new qt_gsi::GenericMethod ("header", "@brief Method QVariant QNetworkRequest::header(QNetworkRequest::KnownHeaders header)\n", true, &_init_f_header_c3349, &_call_f_header_c3349); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QNetworkRequest::operator!=(const QNetworkRequest &other)\n", true, &_init_f_operator_excl__eq__c2885, &_call_f_operator_excl__eq__c2885); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QNetworkRequest &QNetworkRequest::operator=(const QNetworkRequest &other)\n", false, &_init_f_operator_eq__2885, &_call_f_operator_eq__2885); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QNetworkRequest::operator==(const QNetworkRequest &other)\n", true, &_init_f_operator_eq__eq__c2885, &_call_f_operator_eq__eq__c2885); - methods += new qt_gsi::GenericMethod (":originatingObject", "@brief Method QObject *QNetworkRequest::originatingObject()\n", true, &_init_f_originatingObject_c0, &_call_f_originatingObject_c0); - methods += new qt_gsi::GenericMethod (":priority", "@brief Method QNetworkRequest::Priority QNetworkRequest::priority()\n", true, &_init_f_priority_c0, &_call_f_priority_c0); - methods += new qt_gsi::GenericMethod ("rawHeader", "@brief Method QByteArray QNetworkRequest::rawHeader(const QByteArray &headerName)\n", true, &_init_f_rawHeader_c2309, &_call_f_rawHeader_c2309); - methods += new qt_gsi::GenericMethod ("rawHeaderList", "@brief Method QList QNetworkRequest::rawHeaderList()\n", true, &_init_f_rawHeaderList_c0, &_call_f_rawHeaderList_c0); - methods += new qt_gsi::GenericMethod ("setAttribute", "@brief Method void QNetworkRequest::setAttribute(QNetworkRequest::Attribute code, const QVariant &value)\n", false, &_init_f_setAttribute_5083, &_call_f_setAttribute_5083); - methods += new qt_gsi::GenericMethod ("setHeader", "@brief Method void QNetworkRequest::setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value)\n", false, &_init_f_setHeader_5360, &_call_f_setHeader_5360); - methods += new qt_gsi::GenericMethod ("setOriginatingObject|originatingObject=", "@brief Method void QNetworkRequest::setOriginatingObject(QObject *object)\n", false, &_init_f_setOriginatingObject_1302, &_call_f_setOriginatingObject_1302); - methods += new qt_gsi::GenericMethod ("setPriority|priority=", "@brief Method void QNetworkRequest::setPriority(QNetworkRequest::Priority priority)\n", false, &_init_f_setPriority_2990, &_call_f_setPriority_2990); - methods += new qt_gsi::GenericMethod ("setRawHeader", "@brief Method void QNetworkRequest::setRawHeader(const QByteArray &headerName, const QByteArray &value)\n", false, &_init_f_setRawHeader_4510, &_call_f_setRawHeader_4510); - methods += new qt_gsi::GenericMethod ("setSslConfiguration|sslConfiguration=", "@brief Method void QNetworkRequest::setSslConfiguration(const QSslConfiguration &configuration)\n", false, &_init_f_setSslConfiguration_3068, &_call_f_setSslConfiguration_3068); - methods += new qt_gsi::GenericMethod ("setUrl|url=", "@brief Method void QNetworkRequest::setUrl(const QUrl &url)\n", false, &_init_f_setUrl_1701, &_call_f_setUrl_1701); - methods += new qt_gsi::GenericMethod (":sslConfiguration", "@brief Method QSslConfiguration QNetworkRequest::sslConfiguration()\n", true, &_init_f_sslConfiguration_c0, &_call_f_sslConfiguration_c0); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QNetworkRequest::swap(QNetworkRequest &other)\n", false, &_init_f_swap_2190, &_call_f_swap_2190); - methods += new qt_gsi::GenericMethod (":url", "@brief Method QUrl QNetworkRequest::url()\n", true, &_init_f_url_c0, &_call_f_url_c0); - return methods; -} - -gsi::Class decl_QNetworkRequest ("QtMultimedia", "QNetworkRequest", - methods_QNetworkRequest (), - "@qt\n@brief Binding of QNetworkRequest"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkRequest () { return decl_QNetworkRequest; } - -} - - -// Implementation of the enum wrapper class for QNetworkRequest::Attribute -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkRequest_Attribute_Enum ("QtMultimedia", "QNetworkRequest_Attribute", - gsi::enum_const ("HttpStatusCodeAttribute", QNetworkRequest::HttpStatusCodeAttribute, "@brief Enum constant QNetworkRequest::HttpStatusCodeAttribute") + - gsi::enum_const ("HttpReasonPhraseAttribute", QNetworkRequest::HttpReasonPhraseAttribute, "@brief Enum constant QNetworkRequest::HttpReasonPhraseAttribute") + - gsi::enum_const ("RedirectionTargetAttribute", QNetworkRequest::RedirectionTargetAttribute, "@brief Enum constant QNetworkRequest::RedirectionTargetAttribute") + - gsi::enum_const ("ConnectionEncryptedAttribute", QNetworkRequest::ConnectionEncryptedAttribute, "@brief Enum constant QNetworkRequest::ConnectionEncryptedAttribute") + - gsi::enum_const ("CacheLoadControlAttribute", QNetworkRequest::CacheLoadControlAttribute, "@brief Enum constant QNetworkRequest::CacheLoadControlAttribute") + - gsi::enum_const ("CacheSaveControlAttribute", QNetworkRequest::CacheSaveControlAttribute, "@brief Enum constant QNetworkRequest::CacheSaveControlAttribute") + - gsi::enum_const ("SourceIsFromCacheAttribute", QNetworkRequest::SourceIsFromCacheAttribute, "@brief Enum constant QNetworkRequest::SourceIsFromCacheAttribute") + - gsi::enum_const ("DoNotBufferUploadDataAttribute", QNetworkRequest::DoNotBufferUploadDataAttribute, "@brief Enum constant QNetworkRequest::DoNotBufferUploadDataAttribute") + - gsi::enum_const ("HttpPipeliningAllowedAttribute", QNetworkRequest::HttpPipeliningAllowedAttribute, "@brief Enum constant QNetworkRequest::HttpPipeliningAllowedAttribute") + - gsi::enum_const ("HttpPipeliningWasUsedAttribute", QNetworkRequest::HttpPipeliningWasUsedAttribute, "@brief Enum constant QNetworkRequest::HttpPipeliningWasUsedAttribute") + - gsi::enum_const ("CustomVerbAttribute", QNetworkRequest::CustomVerbAttribute, "@brief Enum constant QNetworkRequest::CustomVerbAttribute") + - gsi::enum_const ("CookieLoadControlAttribute", QNetworkRequest::CookieLoadControlAttribute, "@brief Enum constant QNetworkRequest::CookieLoadControlAttribute") + - gsi::enum_const ("AuthenticationReuseAttribute", QNetworkRequest::AuthenticationReuseAttribute, "@brief Enum constant QNetworkRequest::AuthenticationReuseAttribute") + - gsi::enum_const ("CookieSaveControlAttribute", QNetworkRequest::CookieSaveControlAttribute, "@brief Enum constant QNetworkRequest::CookieSaveControlAttribute") + - gsi::enum_const ("MaximumDownloadBufferSizeAttribute", QNetworkRequest::MaximumDownloadBufferSizeAttribute, "@brief Enum constant QNetworkRequest::MaximumDownloadBufferSizeAttribute") + - gsi::enum_const ("DownloadBufferAttribute", QNetworkRequest::DownloadBufferAttribute, "@brief Enum constant QNetworkRequest::DownloadBufferAttribute") + - gsi::enum_const ("SynchronousRequestAttribute", QNetworkRequest::SynchronousRequestAttribute, "@brief Enum constant QNetworkRequest::SynchronousRequestAttribute") + - gsi::enum_const ("BackgroundRequestAttribute", QNetworkRequest::BackgroundRequestAttribute, "@brief Enum constant QNetworkRequest::BackgroundRequestAttribute") + - gsi::enum_const ("SpdyAllowedAttribute", QNetworkRequest::SpdyAllowedAttribute, "@brief Enum constant QNetworkRequest::SpdyAllowedAttribute") + - gsi::enum_const ("SpdyWasUsedAttribute", QNetworkRequest::SpdyWasUsedAttribute, "@brief Enum constant QNetworkRequest::SpdyWasUsedAttribute") + - gsi::enum_const ("EmitAllUploadProgressSignalsAttribute", QNetworkRequest::EmitAllUploadProgressSignalsAttribute, "@brief Enum constant QNetworkRequest::EmitAllUploadProgressSignalsAttribute") + - gsi::enum_const ("User", QNetworkRequest::User, "@brief Enum constant QNetworkRequest::User") + - gsi::enum_const ("UserMax", QNetworkRequest::UserMax, "@brief Enum constant QNetworkRequest::UserMax"), - "@qt\n@brief This class represents the QNetworkRequest::Attribute enum"); - -static gsi::QFlagsClass decl_QNetworkRequest_Attribute_Enums ("QtMultimedia", "QNetworkRequest_QFlags_Attribute", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkRequest_Attribute_Enum_in_parent (decl_QNetworkRequest_Attribute_Enum.defs ()); -static gsi::ClassExt decl_QNetworkRequest_Attribute_Enum_as_child (decl_QNetworkRequest_Attribute_Enum, "Attribute"); -static gsi::ClassExt decl_QNetworkRequest_Attribute_Enums_as_child (decl_QNetworkRequest_Attribute_Enums, "QFlags_Attribute"); - -} - - -// Implementation of the enum wrapper class for QNetworkRequest::KnownHeaders -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkRequest_KnownHeaders_Enum ("QtMultimedia", "QNetworkRequest_KnownHeaders", - gsi::enum_const ("ContentTypeHeader", QNetworkRequest::ContentTypeHeader, "@brief Enum constant QNetworkRequest::ContentTypeHeader") + - gsi::enum_const ("ContentLengthHeader", QNetworkRequest::ContentLengthHeader, "@brief Enum constant QNetworkRequest::ContentLengthHeader") + - gsi::enum_const ("LocationHeader", QNetworkRequest::LocationHeader, "@brief Enum constant QNetworkRequest::LocationHeader") + - gsi::enum_const ("LastModifiedHeader", QNetworkRequest::LastModifiedHeader, "@brief Enum constant QNetworkRequest::LastModifiedHeader") + - gsi::enum_const ("CookieHeader", QNetworkRequest::CookieHeader, "@brief Enum constant QNetworkRequest::CookieHeader") + - gsi::enum_const ("SetCookieHeader", QNetworkRequest::SetCookieHeader, "@brief Enum constant QNetworkRequest::SetCookieHeader") + - gsi::enum_const ("ContentDispositionHeader", QNetworkRequest::ContentDispositionHeader, "@brief Enum constant QNetworkRequest::ContentDispositionHeader") + - gsi::enum_const ("UserAgentHeader", QNetworkRequest::UserAgentHeader, "@brief Enum constant QNetworkRequest::UserAgentHeader") + - gsi::enum_const ("ServerHeader", QNetworkRequest::ServerHeader, "@brief Enum constant QNetworkRequest::ServerHeader"), - "@qt\n@brief This class represents the QNetworkRequest::KnownHeaders enum"); - -static gsi::QFlagsClass decl_QNetworkRequest_KnownHeaders_Enums ("QtMultimedia", "QNetworkRequest_QFlags_KnownHeaders", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkRequest_KnownHeaders_Enum_in_parent (decl_QNetworkRequest_KnownHeaders_Enum.defs ()); -static gsi::ClassExt decl_QNetworkRequest_KnownHeaders_Enum_as_child (decl_QNetworkRequest_KnownHeaders_Enum, "KnownHeaders"); -static gsi::ClassExt decl_QNetworkRequest_KnownHeaders_Enums_as_child (decl_QNetworkRequest_KnownHeaders_Enums, "QFlags_KnownHeaders"); - -} - - -// Implementation of the enum wrapper class for QNetworkRequest::Priority -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkRequest_Priority_Enum ("QtMultimedia", "QNetworkRequest_Priority", - gsi::enum_const ("HighPriority", QNetworkRequest::HighPriority, "@brief Enum constant QNetworkRequest::HighPriority") + - gsi::enum_const ("NormalPriority", QNetworkRequest::NormalPriority, "@brief Enum constant QNetworkRequest::NormalPriority") + - gsi::enum_const ("LowPriority", QNetworkRequest::LowPriority, "@brief Enum constant QNetworkRequest::LowPriority"), - "@qt\n@brief This class represents the QNetworkRequest::Priority enum"); - -static gsi::QFlagsClass decl_QNetworkRequest_Priority_Enums ("QtMultimedia", "QNetworkRequest_QFlags_Priority", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkRequest_Priority_Enum_in_parent (decl_QNetworkRequest_Priority_Enum.defs ()); -static gsi::ClassExt decl_QNetworkRequest_Priority_Enum_as_child (decl_QNetworkRequest_Priority_Enum, "Priority"); -static gsi::ClassExt decl_QNetworkRequest_Priority_Enums_as_child (decl_QNetworkRequest_Priority_Enums, "QFlags_Priority"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkSession.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkSession.cc deleted file mode 100644 index c99d725d1..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQNetworkSession.cc +++ /dev/null @@ -1,1142 +0,0 @@ - -/* - - 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 gsiDeclQNetworkSession.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QNetworkSession - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QNetworkSession::staticMetaObject); -} - - -// void QNetworkSession::accept() - - -static void _init_f_accept_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_accept_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession *)cls)->accept (); -} - - -// quint64 QNetworkSession::activeTime() - - -static void _init_f_activeTime_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_activeTime_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint64)((QNetworkSession *)cls)->activeTime ()); -} - - -// quint64 QNetworkSession::bytesReceived() - - -static void _init_f_bytesReceived_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bytesReceived_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint64)((QNetworkSession *)cls)->bytesReceived ()); -} - - -// quint64 QNetworkSession::bytesWritten() - - -static void _init_f_bytesWritten_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bytesWritten_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint64)((QNetworkSession *)cls)->bytesWritten ()); -} - - -// void QNetworkSession::close() - - -static void _init_f_close_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_close_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession *)cls)->close (); -} - - -// QNetworkConfiguration QNetworkSession::configuration() - - -static void _init_f_configuration_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_configuration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkConfiguration)((QNetworkSession *)cls)->configuration ()); -} - - -// QNetworkSession::SessionError QNetworkSession::error() - - -static void _init_f_error_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_error_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkSession *)cls)->error ())); -} - - -// QString QNetworkSession::errorString() - - -static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QNetworkSession *)cls)->errorString ()); -} - - -// void QNetworkSession::ignore() - - -static void _init_f_ignore_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_ignore_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession *)cls)->ignore (); -} - - -// QNetworkInterface QNetworkSession::interface() - - -static void _init_f_interface_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_interface_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkInterface)((QNetworkSession *)cls)->interface ()); -} - - -// bool QNetworkSession::isOpen() - - -static void _init_f_isOpen_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isOpen_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QNetworkSession *)cls)->isOpen ()); -} - - -// void QNetworkSession::migrate() - - -static void _init_f_migrate_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_migrate_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession *)cls)->migrate (); -} - - -// void QNetworkSession::open() - - -static void _init_f_open_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_open_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession *)cls)->open (); -} - - -// void QNetworkSession::reject() - - -static void _init_f_reject_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_reject_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession *)cls)->reject (); -} - - -// QVariant QNetworkSession::sessionProperty(const QString &key) - - -static void _init_f_sessionProperty_c2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("key"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_sessionProperty_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QVariant)((QNetworkSession *)cls)->sessionProperty (arg1)); -} - - -// void QNetworkSession::setSessionProperty(const QString &key, const QVariant &value) - - -static void _init_f_setSessionProperty_4036 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("key"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setSessionProperty_4036 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession *)cls)->setSessionProperty (arg1, arg2); -} - - -// QNetworkSession::State QNetworkSession::state() - - -static void _init_f_state_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_state_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QNetworkSession *)cls)->state ())); -} - - -// void QNetworkSession::stop() - - -static void _init_f_stop_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_stop_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession *)cls)->stop (); -} - - -// QFlags QNetworkSession::usagePolicies() - - -static void _init_f_usagePolicies_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_usagePolicies_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QFlags)((QNetworkSession *)cls)->usagePolicies ()); -} - - -// bool QNetworkSession::waitForOpened(int msecs) - - -static void _init_f_waitForOpened_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForOpened_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QNetworkSession *)cls)->waitForOpened (arg1)); -} - - -// static QString QNetworkSession::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkSession::tr (arg1, arg2, arg3)); -} - - -// static QString QNetworkSession::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QNetworkSession::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QNetworkSession () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("accept", "@brief Method void QNetworkSession::accept()\n", false, &_init_f_accept_0, &_call_f_accept_0); - methods += new qt_gsi::GenericMethod ("activeTime", "@brief Method quint64 QNetworkSession::activeTime()\n", true, &_init_f_activeTime_c0, &_call_f_activeTime_c0); - methods += new qt_gsi::GenericMethod ("bytesReceived", "@brief Method quint64 QNetworkSession::bytesReceived()\n", true, &_init_f_bytesReceived_c0, &_call_f_bytesReceived_c0); - methods += new qt_gsi::GenericMethod ("bytesWritten", "@brief Method quint64 QNetworkSession::bytesWritten()\n", true, &_init_f_bytesWritten_c0, &_call_f_bytesWritten_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method void QNetworkSession::close()\n", false, &_init_f_close_0, &_call_f_close_0); - methods += new qt_gsi::GenericMethod ("configuration", "@brief Method QNetworkConfiguration QNetworkSession::configuration()\n", true, &_init_f_configuration_c0, &_call_f_configuration_c0); - methods += new qt_gsi::GenericMethod ("error", "@brief Method QNetworkSession::SessionError QNetworkSession::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); - methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QNetworkSession::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod ("ignore", "@brief Method void QNetworkSession::ignore()\n", false, &_init_f_ignore_0, &_call_f_ignore_0); - methods += new qt_gsi::GenericMethod ("interface", "@brief Method QNetworkInterface QNetworkSession::interface()\n", true, &_init_f_interface_c0, &_call_f_interface_c0); - methods += new qt_gsi::GenericMethod ("isOpen?", "@brief Method bool QNetworkSession::isOpen()\n", true, &_init_f_isOpen_c0, &_call_f_isOpen_c0); - methods += new qt_gsi::GenericMethod ("migrate", "@brief Method void QNetworkSession::migrate()\n", false, &_init_f_migrate_0, &_call_f_migrate_0); - methods += new qt_gsi::GenericMethod ("open", "@brief Method void QNetworkSession::open()\n", false, &_init_f_open_0, &_call_f_open_0); - methods += new qt_gsi::GenericMethod ("reject", "@brief Method void QNetworkSession::reject()\n", false, &_init_f_reject_0, &_call_f_reject_0); - methods += new qt_gsi::GenericMethod ("sessionProperty", "@brief Method QVariant QNetworkSession::sessionProperty(const QString &key)\n", true, &_init_f_sessionProperty_c2025, &_call_f_sessionProperty_c2025); - methods += new qt_gsi::GenericMethod ("setSessionProperty", "@brief Method void QNetworkSession::setSessionProperty(const QString &key, const QVariant &value)\n", false, &_init_f_setSessionProperty_4036, &_call_f_setSessionProperty_4036); - methods += new qt_gsi::GenericMethod ("state", "@brief Method QNetworkSession::State QNetworkSession::state()\n", true, &_init_f_state_c0, &_call_f_state_c0); - methods += new qt_gsi::GenericMethod ("stop", "@brief Method void QNetworkSession::stop()\n", false, &_init_f_stop_0, &_call_f_stop_0); - methods += new qt_gsi::GenericMethod ("usagePolicies", "@brief Method QFlags QNetworkSession::usagePolicies()\n", true, &_init_f_usagePolicies_c0, &_call_f_usagePolicies_c0); - methods += new qt_gsi::GenericMethod ("waitForOpened", "@brief Method bool QNetworkSession::waitForOpened(int msecs)\n", false, &_init_f_waitForOpened_767, &_call_f_waitForOpened_767); - methods += gsi::qt_signal ("closed()", "closed", "@brief Signal declaration for QNetworkSession::closed()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QNetworkSession::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("error(QNetworkSession::SessionError)", "error_sig", gsi::arg("arg1"), "@brief Signal declaration for QNetworkSession::error(QNetworkSession::SessionError)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("newConfigurationActivated()", "newConfigurationActivated", "@brief Signal declaration for QNetworkSession::newConfigurationActivated()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("opened()", "opened", "@brief Signal declaration for QNetworkSession::opened()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("preferredConfigurationChanged(const QNetworkConfiguration &, bool)", "preferredConfigurationChanged", gsi::arg("config"), gsi::arg("isSeamless"), "@brief Signal declaration for QNetworkSession::preferredConfigurationChanged(const QNetworkConfiguration &config, bool isSeamless)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("stateChanged(QNetworkSession::State)", "stateChanged", gsi::arg("arg1"), "@brief Signal declaration for QNetworkSession::stateChanged(QNetworkSession::State)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal > ("usagePoliciesChanged(QFlags)", "usagePoliciesChanged", gsi::arg("usagePolicies"), "@brief Signal declaration for QNetworkSession::usagePoliciesChanged(QFlags usagePolicies)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QNetworkSession::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 QNetworkSession::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QNetworkSession (qtdecl_QObject (), "QtMultimedia", "QNetworkSession_Native", - methods_QNetworkSession (), - "@hide\n@alias QNetworkSession"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QNetworkSession () { return decl_QNetworkSession; } - -} - - -class QNetworkSession_Adaptor : public QNetworkSession, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QNetworkSession_Adaptor(); - - // [adaptor ctor] QNetworkSession::QNetworkSession(const QNetworkConfiguration &connConfig, QObject *parent) - QNetworkSession_Adaptor(const QNetworkConfiguration &connConfig) : QNetworkSession(connConfig) - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QNetworkSession::QNetworkSession(const QNetworkConfiguration &connConfig, QObject *parent) - QNetworkSession_Adaptor(const QNetworkConfiguration &connConfig, QObject *parent) : QNetworkSession(connConfig, parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] bool QNetworkSession::isSignalConnected(const QMetaMethod &signal) - bool fp_QNetworkSession_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QNetworkSession::isSignalConnected(signal); - } - - // [expose] int QNetworkSession::receivers(const char *signal) - int fp_QNetworkSession_receivers_c1731 (const char *signal) const { - return QNetworkSession::receivers(signal); - } - - // [expose] QObject *QNetworkSession::sender() - QObject * fp_QNetworkSession_sender_c0 () const { - return QNetworkSession::sender(); - } - - // [expose] int QNetworkSession::senderSignalIndex() - int fp_QNetworkSession_senderSignalIndex_c0 () const { - return QNetworkSession::senderSignalIndex(); - } - - // [emitter impl] void QNetworkSession::closed() - void emitter_QNetworkSession_closed_0() - { - emit QNetworkSession::closed(); - } - - // [emitter impl] void QNetworkSession::destroyed(QObject *) - void emitter_QNetworkSession_destroyed_1302(QObject *arg1) - { - emit QNetworkSession::destroyed(arg1); - } - - // [emitter impl] void QNetworkSession::error(QNetworkSession::SessionError) - void emitter_QNetworkSession_error_3381(QNetworkSession::SessionError arg1) - { - emit QNetworkSession::error(arg1); - } - - // [adaptor impl] bool QNetworkSession::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QNetworkSession::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QNetworkSession_Adaptor::cbs_event_1217_0, arg1); - } else { - return QNetworkSession::event(arg1); - } - } - - // [adaptor impl] bool QNetworkSession::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QNetworkSession::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QNetworkSession_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QNetworkSession::eventFilter(arg1, arg2); - } - } - - // [emitter impl] void QNetworkSession::newConfigurationActivated() - void emitter_QNetworkSession_newConfigurationActivated_0() - { - emit QNetworkSession::newConfigurationActivated(); - } - - // [emitter impl] void QNetworkSession::opened() - void emitter_QNetworkSession_opened_0() - { - emit QNetworkSession::opened(); - } - - // [emitter impl] void QNetworkSession::preferredConfigurationChanged(const QNetworkConfiguration &config, bool isSeamless) - void emitter_QNetworkSession_preferredConfigurationChanged_4264(const QNetworkConfiguration &config, bool isSeamless) - { - emit QNetworkSession::preferredConfigurationChanged(config, isSeamless); - } - - // [emitter impl] void QNetworkSession::stateChanged(QNetworkSession::State) - void emitter_QNetworkSession_stateChanged_2632(QNetworkSession::State arg1) - { - emit QNetworkSession::stateChanged(arg1); - } - - // [emitter impl] void QNetworkSession::usagePoliciesChanged(QFlags usagePolicies) - void emitter_QNetworkSession_usagePoliciesChanged_3940(QFlags usagePolicies) - { - emit QNetworkSession::usagePoliciesChanged(usagePolicies); - } - - // [adaptor impl] void QNetworkSession::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QNetworkSession::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QNetworkSession_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QNetworkSession::childEvent(arg1); - } - } - - // [adaptor impl] void QNetworkSession::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QNetworkSession::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QNetworkSession_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QNetworkSession::customEvent(arg1); - } - } - - // [adaptor impl] void QNetworkSession::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QNetworkSession::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QNetworkSession_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QNetworkSession::disconnectNotify(signal); - } - } - - // [adaptor impl] void QNetworkSession::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QNetworkSession::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QNetworkSession_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QNetworkSession::timerEvent(arg1); - } - } - - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QNetworkSession_Adaptor::~QNetworkSession_Adaptor() { } - -// Constructor QNetworkSession::QNetworkSession(const QNetworkConfiguration &connConfig, QObject *parent) (adaptor class) - -static void _init_ctor_QNetworkSession_Adaptor_4702 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("connConfig"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("parent", true, "0"); - decl->add_arg (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QNetworkSession_Adaptor_4702 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QNetworkSession_Adaptor (arg1, arg2)); -} - - -// void QNetworkSession::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkSession_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// emitter void QNetworkSession::closed() - -static void _init_emitter_closed_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_emitter_closed_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_closed_0 (); -} - - -// void QNetworkSession::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkSession_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// emitter void QNetworkSession::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_destroyed_1302 (arg1); -} - - -// void QNetworkSession::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkSession_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// emitter void QNetworkSession::error(QNetworkSession::SessionError) - -static void _init_emitter_error_3381 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_emitter_error_3381 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_error_3381 (arg1); -} - - -// bool QNetworkSession::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QNetworkSession_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkSession_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QNetworkSession::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QNetworkSession_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkSession_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// exposed bool QNetworkSession::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QNetworkSession_Adaptor *)cls)->fp_QNetworkSession_isSignalConnected_c2394 (arg1)); -} - - -// emitter void QNetworkSession::newConfigurationActivated() - -static void _init_emitter_newConfigurationActivated_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_emitter_newConfigurationActivated_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_newConfigurationActivated_0 (); -} - - -// emitter void QNetworkSession::opened() - -static void _init_emitter_opened_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_emitter_opened_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_opened_0 (); -} - - -// emitter void QNetworkSession::preferredConfigurationChanged(const QNetworkConfiguration &config, bool isSeamless) - -static void _init_emitter_preferredConfigurationChanged_4264 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("config"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("isSeamless"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_emitter_preferredConfigurationChanged_4264 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - bool arg2 = args.read (heap); - ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_preferredConfigurationChanged_4264 (arg1, arg2); -} - - -// exposed int QNetworkSession::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QNetworkSession_Adaptor *)cls)->fp_QNetworkSession_receivers_c1731 (arg1)); -} - - -// exposed QObject *QNetworkSession::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QNetworkSession_Adaptor *)cls)->fp_QNetworkSession_sender_c0 ()); -} - - -// exposed int QNetworkSession::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QNetworkSession_Adaptor *)cls)->fp_QNetworkSession_senderSignalIndex_c0 ()); -} - - -// emitter void QNetworkSession::stateChanged(QNetworkSession::State) - -static void _init_emitter_stateChanged_2632 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_emitter_stateChanged_2632 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_stateChanged_2632 (arg1); -} - - -// void QNetworkSession::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QNetworkSession_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QNetworkSession_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -// emitter void QNetworkSession::usagePoliciesChanged(QFlags usagePolicies) - -static void _init_emitter_usagePoliciesChanged_3940 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("usagePolicies"); - decl->add_arg > (argspec_0); - decl->set_return (); -} - -static void _call_emitter_usagePoliciesChanged_3940 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QFlags arg1 = args.read > (heap); - ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_usagePoliciesChanged_3940 (arg1); -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QNetworkSession (); - -static gsi::Methods methods_QNetworkSession_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QNetworkSession::QNetworkSession(const QNetworkConfiguration &connConfig, QObject *parent)\nThis method creates an object of class QNetworkSession.", &_init_ctor_QNetworkSession_Adaptor_4702, &_call_ctor_QNetworkSession_Adaptor_4702); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QNetworkSession::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("emit_closed", "@brief Emitter for signal void QNetworkSession::closed()\nCall this method to emit this signal.", false, &_init_emitter_closed_0, &_call_emitter_closed_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QNetworkSession::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QNetworkSession::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QNetworkSession::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("emit_error_sig", "@brief Emitter for signal void QNetworkSession::error(QNetworkSession::SessionError)\nCall this method to emit this signal.", false, &_init_emitter_error_3381, &_call_emitter_error_3381); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QNetworkSession::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QNetworkSession::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QNetworkSession::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("emit_newConfigurationActivated", "@brief Emitter for signal void QNetworkSession::newConfigurationActivated()\nCall this method to emit this signal.", false, &_init_emitter_newConfigurationActivated_0, &_call_emitter_newConfigurationActivated_0); - methods += new qt_gsi::GenericMethod ("emit_opened", "@brief Emitter for signal void QNetworkSession::opened()\nCall this method to emit this signal.", false, &_init_emitter_opened_0, &_call_emitter_opened_0); - methods += new qt_gsi::GenericMethod ("emit_preferredConfigurationChanged", "@brief Emitter for signal void QNetworkSession::preferredConfigurationChanged(const QNetworkConfiguration &config, bool isSeamless)\nCall this method to emit this signal.", false, &_init_emitter_preferredConfigurationChanged_4264, &_call_emitter_preferredConfigurationChanged_4264); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QNetworkSession::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QNetworkSession::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QNetworkSession::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("emit_stateChanged", "@brief Emitter for signal void QNetworkSession::stateChanged(QNetworkSession::State)\nCall this method to emit this signal.", false, &_init_emitter_stateChanged_2632, &_call_emitter_stateChanged_2632); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QNetworkSession::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("emit_usagePoliciesChanged", "@brief Emitter for signal void QNetworkSession::usagePoliciesChanged(QFlags usagePolicies)\nCall this method to emit this signal.", false, &_init_emitter_usagePoliciesChanged_3940, &_call_emitter_usagePoliciesChanged_3940); - return methods; -} - -gsi::Class decl_QNetworkSession_Adaptor (qtdecl_QNetworkSession (), "QtMultimedia", "QNetworkSession", - methods_QNetworkSession_Adaptor (), - "@qt\n@brief Binding of QNetworkSession"); - -} - - -// Implementation of the enum wrapper class for QNetworkSession::SessionError -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkSession_SessionError_Enum ("QtMultimedia", "QNetworkSession_SessionError", - gsi::enum_const ("UnknownSessionError", QNetworkSession::UnknownSessionError, "@brief Enum constant QNetworkSession::UnknownSessionError") + - gsi::enum_const ("SessionAbortedError", QNetworkSession::SessionAbortedError, "@brief Enum constant QNetworkSession::SessionAbortedError") + - gsi::enum_const ("RoamingError", QNetworkSession::RoamingError, "@brief Enum constant QNetworkSession::RoamingError") + - gsi::enum_const ("OperationNotSupportedError", QNetworkSession::OperationNotSupportedError, "@brief Enum constant QNetworkSession::OperationNotSupportedError") + - gsi::enum_const ("InvalidConfigurationError", QNetworkSession::InvalidConfigurationError, "@brief Enum constant QNetworkSession::InvalidConfigurationError"), - "@qt\n@brief This class represents the QNetworkSession::SessionError enum"); - -static gsi::QFlagsClass decl_QNetworkSession_SessionError_Enums ("QtMultimedia", "QNetworkSession_QFlags_SessionError", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkSession_SessionError_Enum_in_parent (decl_QNetworkSession_SessionError_Enum.defs ()); -static gsi::ClassExt decl_QNetworkSession_SessionError_Enum_as_child (decl_QNetworkSession_SessionError_Enum, "SessionError"); -static gsi::ClassExt decl_QNetworkSession_SessionError_Enums_as_child (decl_QNetworkSession_SessionError_Enums, "QFlags_SessionError"); - -} - - -// Implementation of the enum wrapper class for QNetworkSession::State -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkSession_State_Enum ("QtMultimedia", "QNetworkSession_State", - gsi::enum_const ("Invalid", QNetworkSession::Invalid, "@brief Enum constant QNetworkSession::Invalid") + - gsi::enum_const ("NotAvailable", QNetworkSession::NotAvailable, "@brief Enum constant QNetworkSession::NotAvailable") + - gsi::enum_const ("Connecting", QNetworkSession::Connecting, "@brief Enum constant QNetworkSession::Connecting") + - gsi::enum_const ("Connected", QNetworkSession::Connected, "@brief Enum constant QNetworkSession::Connected") + - gsi::enum_const ("Closing", QNetworkSession::Closing, "@brief Enum constant QNetworkSession::Closing") + - gsi::enum_const ("Disconnected", QNetworkSession::Disconnected, "@brief Enum constant QNetworkSession::Disconnected") + - gsi::enum_const ("Roaming", QNetworkSession::Roaming, "@brief Enum constant QNetworkSession::Roaming"), - "@qt\n@brief This class represents the QNetworkSession::State enum"); - -static gsi::QFlagsClass decl_QNetworkSession_State_Enums ("QtMultimedia", "QNetworkSession_QFlags_State", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkSession_State_Enum_in_parent (decl_QNetworkSession_State_Enum.defs ()); -static gsi::ClassExt decl_QNetworkSession_State_Enum_as_child (decl_QNetworkSession_State_Enum, "State"); -static gsi::ClassExt decl_QNetworkSession_State_Enums_as_child (decl_QNetworkSession_State_Enums, "QFlags_State"); - -} - - -// Implementation of the enum wrapper class for QNetworkSession::UsagePolicy -namespace qt_gsi -{ - -static gsi::Enum decl_QNetworkSession_UsagePolicy_Enum ("QtMultimedia", "QNetworkSession_UsagePolicy", - gsi::enum_const ("NoPolicy", QNetworkSession::NoPolicy, "@brief Enum constant QNetworkSession::NoPolicy") + - gsi::enum_const ("NoBackgroundTrafficPolicy", QNetworkSession::NoBackgroundTrafficPolicy, "@brief Enum constant QNetworkSession::NoBackgroundTrafficPolicy"), - "@qt\n@brief This class represents the QNetworkSession::UsagePolicy enum"); - -static gsi::QFlagsClass decl_QNetworkSession_UsagePolicy_Enums ("QtMultimedia", "QNetworkSession_QFlags_UsagePolicy", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QNetworkSession_UsagePolicy_Enum_in_parent (decl_QNetworkSession_UsagePolicy_Enum.defs ()); -static gsi::ClassExt decl_QNetworkSession_UsagePolicy_Enum_as_child (decl_QNetworkSession_UsagePolicy_Enum, "UsagePolicy"); -static gsi::ClassExt decl_QNetworkSession_UsagePolicy_Enums_as_child (decl_QNetworkSession_UsagePolicy_Enums, "QFlags_UsagePolicy"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc index 87c09c3ce..d836c4a96 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc index 9342237a9..2c54c3b40 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc index f4fb079ec..11a6802a3 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc index 4809cd851..72182329d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc index bd1dc3686..3221e5de8 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc index 83d141e73..12b66abc1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSsl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSsl.cc deleted file mode 100644 index 97cee5792..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSsl.cc +++ /dev/null @@ -1,184 +0,0 @@ - -/* - - 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 gsiDeclQSsl.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// namespace QSsl - -class QSsl_Namespace { }; - -namespace gsi -{ -gsi::Class decl_QSsl_Namespace ("QtMultimedia", "QSsl", - gsi::Methods(), - "@qt\n@brief This class represents the QSsl namespace"); -} - - -// Implementation of the enum wrapper class for QSsl::AlternativeNameEntryType -namespace qt_gsi -{ - -static gsi::Enum decl_QSsl_AlternativeNameEntryType_Enum ("QtMultimedia", "QSsl_AlternativeNameEntryType", - gsi::enum_const ("EmailEntry", QSsl::EmailEntry, "@brief Enum constant QSsl::EmailEntry") + - gsi::enum_const ("DnsEntry", QSsl::DnsEntry, "@brief Enum constant QSsl::DnsEntry"), - "@qt\n@brief This class represents the QSsl::AlternativeNameEntryType enum"); - -static gsi::QFlagsClass decl_QSsl_AlternativeNameEntryType_Enums ("QtMultimedia", "QSsl_QFlags_AlternativeNameEntryType", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSsl_AlternativeNameEntryType_Enum_in_parent (decl_QSsl_AlternativeNameEntryType_Enum.defs ()); -static gsi::ClassExt decl_QSsl_AlternativeNameEntryType_Enum_as_child (decl_QSsl_AlternativeNameEntryType_Enum, "AlternativeNameEntryType"); -static gsi::ClassExt decl_QSsl_AlternativeNameEntryType_Enums_as_child (decl_QSsl_AlternativeNameEntryType_Enums, "QFlags_AlternativeNameEntryType"); - -} - - -// Implementation of the enum wrapper class for QSsl::EncodingFormat -namespace qt_gsi -{ - -static gsi::Enum decl_QSsl_EncodingFormat_Enum ("QtMultimedia", "QSsl_EncodingFormat", - gsi::enum_const ("Pem", QSsl::Pem, "@brief Enum constant QSsl::Pem") + - gsi::enum_const ("Der", QSsl::Der, "@brief Enum constant QSsl::Der"), - "@qt\n@brief This class represents the QSsl::EncodingFormat enum"); - -static gsi::QFlagsClass decl_QSsl_EncodingFormat_Enums ("QtMultimedia", "QSsl_QFlags_EncodingFormat", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSsl_EncodingFormat_Enum_in_parent (decl_QSsl_EncodingFormat_Enum.defs ()); -static gsi::ClassExt decl_QSsl_EncodingFormat_Enum_as_child (decl_QSsl_EncodingFormat_Enum, "EncodingFormat"); -static gsi::ClassExt decl_QSsl_EncodingFormat_Enums_as_child (decl_QSsl_EncodingFormat_Enums, "QFlags_EncodingFormat"); - -} - - -// Implementation of the enum wrapper class for QSsl::KeyAlgorithm -namespace qt_gsi -{ - -static gsi::Enum decl_QSsl_KeyAlgorithm_Enum ("QtMultimedia", "QSsl_KeyAlgorithm", - gsi::enum_const ("Opaque", QSsl::Opaque, "@brief Enum constant QSsl::Opaque") + - gsi::enum_const ("Rsa", QSsl::Rsa, "@brief Enum constant QSsl::Rsa") + - gsi::enum_const ("Dsa", QSsl::Dsa, "@brief Enum constant QSsl::Dsa") + - gsi::enum_const ("Ec", QSsl::Ec, "@brief Enum constant QSsl::Ec"), - "@qt\n@brief This class represents the QSsl::KeyAlgorithm enum"); - -static gsi::QFlagsClass decl_QSsl_KeyAlgorithm_Enums ("QtMultimedia", "QSsl_QFlags_KeyAlgorithm", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSsl_KeyAlgorithm_Enum_in_parent (decl_QSsl_KeyAlgorithm_Enum.defs ()); -static gsi::ClassExt decl_QSsl_KeyAlgorithm_Enum_as_child (decl_QSsl_KeyAlgorithm_Enum, "KeyAlgorithm"); -static gsi::ClassExt decl_QSsl_KeyAlgorithm_Enums_as_child (decl_QSsl_KeyAlgorithm_Enums, "QFlags_KeyAlgorithm"); - -} - - -// Implementation of the enum wrapper class for QSsl::KeyType -namespace qt_gsi -{ - -static gsi::Enum decl_QSsl_KeyType_Enum ("QtMultimedia", "QSsl_KeyType", - gsi::enum_const ("PrivateKey", QSsl::PrivateKey, "@brief Enum constant QSsl::PrivateKey") + - gsi::enum_const ("PublicKey", QSsl::PublicKey, "@brief Enum constant QSsl::PublicKey"), - "@qt\n@brief This class represents the QSsl::KeyType enum"); - -static gsi::QFlagsClass decl_QSsl_KeyType_Enums ("QtMultimedia", "QSsl_QFlags_KeyType", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSsl_KeyType_Enum_in_parent (decl_QSsl_KeyType_Enum.defs ()); -static gsi::ClassExt decl_QSsl_KeyType_Enum_as_child (decl_QSsl_KeyType_Enum, "KeyType"); -static gsi::ClassExt decl_QSsl_KeyType_Enums_as_child (decl_QSsl_KeyType_Enums, "QFlags_KeyType"); - -} - - -// Implementation of the enum wrapper class for QSsl::SslOption -namespace qt_gsi -{ - -static gsi::Enum decl_QSsl_SslOption_Enum ("QtMultimedia", "QSsl_SslOption", - gsi::enum_const ("SslOptionDisableEmptyFragments", QSsl::SslOptionDisableEmptyFragments, "@brief Enum constant QSsl::SslOptionDisableEmptyFragments") + - gsi::enum_const ("SslOptionDisableSessionTickets", QSsl::SslOptionDisableSessionTickets, "@brief Enum constant QSsl::SslOptionDisableSessionTickets") + - gsi::enum_const ("SslOptionDisableCompression", QSsl::SslOptionDisableCompression, "@brief Enum constant QSsl::SslOptionDisableCompression") + - gsi::enum_const ("SslOptionDisableServerNameIndication", QSsl::SslOptionDisableServerNameIndication, "@brief Enum constant QSsl::SslOptionDisableServerNameIndication") + - gsi::enum_const ("SslOptionDisableLegacyRenegotiation", QSsl::SslOptionDisableLegacyRenegotiation, "@brief Enum constant QSsl::SslOptionDisableLegacyRenegotiation") + - gsi::enum_const ("SslOptionDisableSessionSharing", QSsl::SslOptionDisableSessionSharing, "@brief Enum constant QSsl::SslOptionDisableSessionSharing") + - gsi::enum_const ("SslOptionDisableSessionPersistence", QSsl::SslOptionDisableSessionPersistence, "@brief Enum constant QSsl::SslOptionDisableSessionPersistence"), - "@qt\n@brief This class represents the QSsl::SslOption enum"); - -static gsi::QFlagsClass decl_QSsl_SslOption_Enums ("QtMultimedia", "QSsl_QFlags_SslOption", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSsl_SslOption_Enum_in_parent (decl_QSsl_SslOption_Enum.defs ()); -static gsi::ClassExt decl_QSsl_SslOption_Enum_as_child (decl_QSsl_SslOption_Enum, "SslOption"); -static gsi::ClassExt decl_QSsl_SslOption_Enums_as_child (decl_QSsl_SslOption_Enums, "QFlags_SslOption"); - -} - - -// Implementation of the enum wrapper class for QSsl::SslProtocol -namespace qt_gsi -{ - -static gsi::Enum decl_QSsl_SslProtocol_Enum ("QtMultimedia", "QSsl_SslProtocol", - gsi::enum_const ("SslV3", QSsl::SslV3, "@brief Enum constant QSsl::SslV3") + - gsi::enum_const ("SslV2", QSsl::SslV2, "@brief Enum constant QSsl::SslV2") + - gsi::enum_const ("TlsV1_0", QSsl::TlsV1_0, "@brief Enum constant QSsl::TlsV1_0") + - gsi::enum_const ("TlsV1_1", QSsl::TlsV1_1, "@brief Enum constant QSsl::TlsV1_1") + - gsi::enum_const ("TlsV1_2", QSsl::TlsV1_2, "@brief Enum constant QSsl::TlsV1_2") + - gsi::enum_const ("AnyProtocol", QSsl::AnyProtocol, "@brief Enum constant QSsl::AnyProtocol") + - gsi::enum_const ("TlsV1SslV3", QSsl::TlsV1SslV3, "@brief Enum constant QSsl::TlsV1SslV3") + - gsi::enum_const ("SecureProtocols", QSsl::SecureProtocols, "@brief Enum constant QSsl::SecureProtocols") + - gsi::enum_const ("TlsV1_0OrLater", QSsl::TlsV1_0OrLater, "@brief Enum constant QSsl::TlsV1_0OrLater") + - gsi::enum_const ("TlsV1_1OrLater", QSsl::TlsV1_1OrLater, "@brief Enum constant QSsl::TlsV1_1OrLater") + - gsi::enum_const ("TlsV1_2OrLater", QSsl::TlsV1_2OrLater, "@brief Enum constant QSsl::TlsV1_2OrLater") + - gsi::enum_const ("UnknownProtocol", QSsl::UnknownProtocol, "@brief Enum constant QSsl::UnknownProtocol"), - "@qt\n@brief This class represents the QSsl::SslProtocol enum"); - -static gsi::QFlagsClass decl_QSsl_SslProtocol_Enums ("QtMultimedia", "QSsl_QFlags_SslProtocol", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSsl_SslProtocol_Enum_in_parent (decl_QSsl_SslProtocol_Enum.defs ()); -static gsi::ClassExt decl_QSsl_SslProtocol_Enum_as_child (decl_QSsl_SslProtocol_Enum, "SslProtocol"); -static gsi::ClassExt decl_QSsl_SslProtocol_Enums_as_child (decl_QSsl_SslProtocol_Enums, "QFlags_SslProtocol"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCertificate.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCertificate.cc deleted file mode 100644 index 6d996c945..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCertificate.cc +++ /dev/null @@ -1,719 +0,0 @@ - -/* - - 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 gsiDeclQSslCertificate.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslCertificate - -// Constructor QSslCertificate::QSslCertificate(QIODevice *device, QSsl::EncodingFormat format) - - -static void _init_ctor_QSslCertificate_3702 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QSslCertificate_3702 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - ret.write (new QSslCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); -} - - -// Constructor QSslCertificate::QSslCertificate(const QByteArray &data, QSsl::EncodingFormat format) - - -static void _init_ctor_QSslCertificate_4564 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("data", true, "QByteArray()"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QSslCertificate_4564 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - ret.write (new QSslCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); -} - - -// Constructor QSslCertificate::QSslCertificate(const QSslCertificate &other) - - -static void _init_ctor_QSslCertificate_2823 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslCertificate_2823 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); - ret.write (new QSslCertificate (arg1)); -} - - -// void QSslCertificate::clear() - - -static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslCertificate *)cls)->clear (); -} - - -// QByteArray QSslCertificate::digest(QCryptographicHash::Algorithm algorithm) - - -static void _init_f_digest_c3331 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("algorithm", true, "QCryptographicHash::Md5"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_digest_c3331 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QCryptographicHash::Md5)); - ret.write ((QByteArray)((QSslCertificate *)cls)->digest (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// QDateTime QSslCertificate::effectiveDate() - - -static void _init_f_effectiveDate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_effectiveDate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QDateTime)((QSslCertificate *)cls)->effectiveDate ()); -} - - -// QDateTime QSslCertificate::expiryDate() - - -static void _init_f_expiryDate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_expiryDate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QDateTime)((QSslCertificate *)cls)->expiryDate ()); -} - - -// QList QSslCertificate::extensions() - - -static void _init_f_extensions_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_extensions_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslCertificate *)cls)->extensions ()); -} - - -// Qt::HANDLE QSslCertificate::handle() - - -static void _init_f_handle_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_handle_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((Qt::HANDLE)((QSslCertificate *)cls)->handle ()); -} - - -// bool QSslCertificate::isBlacklisted() - - -static void _init_f_isBlacklisted_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isBlacklisted_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslCertificate *)cls)->isBlacklisted ()); -} - - -// bool QSslCertificate::isNull() - - -static void _init_f_isNull_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isNull_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslCertificate *)cls)->isNull ()); -} - - -// bool QSslCertificate::isSelfSigned() - - -static void _init_f_isSelfSigned_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isSelfSigned_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslCertificate *)cls)->isSelfSigned ()); -} - - -// QStringList QSslCertificate::issuerInfo(QSslCertificate::SubjectInfo info) - - -static void _init_f_issuerInfo_c3178 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("info"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_issuerInfo_c3178 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((QStringList)((QSslCertificate *)cls)->issuerInfo (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// QStringList QSslCertificate::issuerInfo(const QByteArray &attribute) - - -static void _init_f_issuerInfo_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("attribute"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_issuerInfo_c2309 (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 (heap); - ret.write ((QStringList)((QSslCertificate *)cls)->issuerInfo (arg1)); -} - - -// QList QSslCertificate::issuerInfoAttributes() - - -static void _init_f_issuerInfoAttributes_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_issuerInfoAttributes_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslCertificate *)cls)->issuerInfoAttributes ()); -} - - -// bool QSslCertificate::operator!=(const QSslCertificate &other) - - -static void _init_f_operator_excl__eq__c2823 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2823 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); - ret.write ((bool)((QSslCertificate *)cls)->operator!= (arg1)); -} - - -// QSslCertificate &QSslCertificate::operator=(const QSslCertificate &other) - - -static void _init_f_operator_eq__2823 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2823 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); - ret.write ((QSslCertificate &)((QSslCertificate *)cls)->operator= (arg1)); -} - - -// bool QSslCertificate::operator==(const QSslCertificate &other) - - -static void _init_f_operator_eq__eq__c2823 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2823 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); - ret.write ((bool)((QSslCertificate *)cls)->operator== (arg1)); -} - - -// QSslKey QSslCertificate::publicKey() - - -static void _init_f_publicKey_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_publicKey_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslKey)((QSslCertificate *)cls)->publicKey ()); -} - - -// QByteArray QSslCertificate::serialNumber() - - -static void _init_f_serialNumber_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_serialNumber_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslCertificate *)cls)->serialNumber ()); -} - - -// QStringList QSslCertificate::subjectInfo(QSslCertificate::SubjectInfo info) - - -static void _init_f_subjectInfo_c3178 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("info"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_subjectInfo_c3178 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((QStringList)((QSslCertificate *)cls)->subjectInfo (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// QStringList QSslCertificate::subjectInfo(const QByteArray &attribute) - - -static void _init_f_subjectInfo_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("attribute"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_subjectInfo_c2309 (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 (heap); - ret.write ((QStringList)((QSslCertificate *)cls)->subjectInfo (arg1)); -} - - -// QList QSslCertificate::subjectInfoAttributes() - - -static void _init_f_subjectInfoAttributes_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_subjectInfoAttributes_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslCertificate *)cls)->subjectInfoAttributes ()); -} - - -// void QSslCertificate::swap(QSslCertificate &other) - - -static void _init_f_swap_2128 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2128 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QSslCertificate &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslCertificate *)cls)->swap (arg1); -} - - -// QByteArray QSslCertificate::toDer() - - -static void _init_f_toDer_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_toDer_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslCertificate *)cls)->toDer ()); -} - - -// QByteArray QSslCertificate::toPem() - - -static void _init_f_toPem_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_toPem_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslCertificate *)cls)->toPem ()); -} - - -// QString QSslCertificate::toText() - - -static void _init_f_toText_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_toText_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslCertificate *)cls)->toText ()); -} - - -// QByteArray QSslCertificate::version() - - -static void _init_f_version_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_version_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslCertificate *)cls)->version ()); -} - - -// static QList QSslCertificate::fromData(const QByteArray &data, QSsl::EncodingFormat format) - - -static void _init_f_fromData_4564 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("data"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_1); - decl->set_return > (); -} - -static void _call_f_fromData_4564 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - ret.write > ((QList)QSslCertificate::fromData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); -} - - -// static QList QSslCertificate::fromDevice(QIODevice *device, QSsl::EncodingFormat format) - - -static void _init_f_fromDevice_3702 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_1); - decl->set_return > (); -} - -static void _call_f_fromDevice_3702 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - ret.write > ((QList)QSslCertificate::fromDevice (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); -} - - -// static QList QSslCertificate::fromPath(const QString &path, QSsl::EncodingFormat format, QRegExp::PatternSyntax syntax) - - -static void _init_f_fromPath_6773 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("path"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("syntax", true, "QRegExp::FixedString"); - decl->add_arg::target_type & > (argspec_2); - decl->set_return > (); -} - -static void _call_f_fromPath_6773 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); - ret.write > ((QList)QSslCertificate::fromPath (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); -} - - -// static bool QSslCertificate::importPkcs12(QIODevice *device, QSslKey *key, QSslCertificate *cert, QList *caCertificates, const QByteArray &passPhrase) - - -static void _init_f_importPkcs12_9509 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("key"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("cert"); - decl->add_arg (argspec_2); - static gsi::ArgSpecBase argspec_3 ("caCertificates", true, "0"); - decl->add_arg * > (argspec_3); - static gsi::ArgSpecBase argspec_4 ("passPhrase", true, "QByteArray()"); - decl->add_arg (argspec_4); - decl->set_return (); -} - -static void _call_f_importPkcs12_9509 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - QSslKey *arg2 = args.read (heap); - QSslCertificate *arg3 = args.read (heap); - QList *arg4 = args ? args.read * > (heap) : (QList *)(0); - const QByteArray &arg5 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - ret.write ((bool)QSslCertificate::importPkcs12 (arg1, arg2, arg3, arg4, arg5)); -} - - -// static QList QSslCertificate::verify(QList certificateChain, const QString &hostName) - - -static void _init_f_verify_4478 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificateChain"); - decl->add_arg > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("hostName", true, "QString()"); - decl->add_arg (argspec_1); - decl->set_return > (); -} - -static void _call_f_verify_4478 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QList arg1 = args.read > (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - ret.write > ((QList)QSslCertificate::verify (arg1, arg2)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QSslCertificate () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCertificate::QSslCertificate(QIODevice *device, QSsl::EncodingFormat format)\nThis method creates an object of class QSslCertificate.", &_init_ctor_QSslCertificate_3702, &_call_ctor_QSslCertificate_3702); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCertificate::QSslCertificate(const QByteArray &data, QSsl::EncodingFormat format)\nThis method creates an object of class QSslCertificate.", &_init_ctor_QSslCertificate_4564, &_call_ctor_QSslCertificate_4564); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCertificate::QSslCertificate(const QSslCertificate &other)\nThis method creates an object of class QSslCertificate.", &_init_ctor_QSslCertificate_2823, &_call_ctor_QSslCertificate_2823); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSslCertificate::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("digest", "@brief Method QByteArray QSslCertificate::digest(QCryptographicHash::Algorithm algorithm)\n", true, &_init_f_digest_c3331, &_call_f_digest_c3331); - methods += new qt_gsi::GenericMethod ("effectiveDate", "@brief Method QDateTime QSslCertificate::effectiveDate()\n", true, &_init_f_effectiveDate_c0, &_call_f_effectiveDate_c0); - methods += new qt_gsi::GenericMethod ("expiryDate", "@brief Method QDateTime QSslCertificate::expiryDate()\n", true, &_init_f_expiryDate_c0, &_call_f_expiryDate_c0); - methods += new qt_gsi::GenericMethod ("extensions", "@brief Method QList QSslCertificate::extensions()\n", true, &_init_f_extensions_c0, &_call_f_extensions_c0); - methods += new qt_gsi::GenericMethod ("handle", "@brief Method Qt::HANDLE QSslCertificate::handle()\n", true, &_init_f_handle_c0, &_call_f_handle_c0); - methods += new qt_gsi::GenericMethod ("isBlacklisted?", "@brief Method bool QSslCertificate::isBlacklisted()\n", true, &_init_f_isBlacklisted_c0, &_call_f_isBlacklisted_c0); - methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QSslCertificate::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); - methods += new qt_gsi::GenericMethod ("isSelfSigned?", "@brief Method bool QSslCertificate::isSelfSigned()\n", true, &_init_f_isSelfSigned_c0, &_call_f_isSelfSigned_c0); - methods += new qt_gsi::GenericMethod ("issuerInfo", "@brief Method QStringList QSslCertificate::issuerInfo(QSslCertificate::SubjectInfo info)\n", true, &_init_f_issuerInfo_c3178, &_call_f_issuerInfo_c3178); - methods += new qt_gsi::GenericMethod ("issuerInfo", "@brief Method QStringList QSslCertificate::issuerInfo(const QByteArray &attribute)\n", true, &_init_f_issuerInfo_c2309, &_call_f_issuerInfo_c2309); - methods += new qt_gsi::GenericMethod ("issuerInfoAttributes", "@brief Method QList QSslCertificate::issuerInfoAttributes()\n", true, &_init_f_issuerInfoAttributes_c0, &_call_f_issuerInfoAttributes_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QSslCertificate::operator!=(const QSslCertificate &other)\n", true, &_init_f_operator_excl__eq__c2823, &_call_f_operator_excl__eq__c2823); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSslCertificate &QSslCertificate::operator=(const QSslCertificate &other)\n", false, &_init_f_operator_eq__2823, &_call_f_operator_eq__2823); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QSslCertificate::operator==(const QSslCertificate &other)\n", true, &_init_f_operator_eq__eq__c2823, &_call_f_operator_eq__eq__c2823); - methods += new qt_gsi::GenericMethod ("publicKey", "@brief Method QSslKey QSslCertificate::publicKey()\n", true, &_init_f_publicKey_c0, &_call_f_publicKey_c0); - methods += new qt_gsi::GenericMethod ("serialNumber", "@brief Method QByteArray QSslCertificate::serialNumber()\n", true, &_init_f_serialNumber_c0, &_call_f_serialNumber_c0); - methods += new qt_gsi::GenericMethod ("subjectInfo", "@brief Method QStringList QSslCertificate::subjectInfo(QSslCertificate::SubjectInfo info)\n", true, &_init_f_subjectInfo_c3178, &_call_f_subjectInfo_c3178); - methods += new qt_gsi::GenericMethod ("subjectInfo", "@brief Method QStringList QSslCertificate::subjectInfo(const QByteArray &attribute)\n", true, &_init_f_subjectInfo_c2309, &_call_f_subjectInfo_c2309); - methods += new qt_gsi::GenericMethod ("subjectInfoAttributes", "@brief Method QList QSslCertificate::subjectInfoAttributes()\n", true, &_init_f_subjectInfoAttributes_c0, &_call_f_subjectInfoAttributes_c0); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QSslCertificate::swap(QSslCertificate &other)\n", false, &_init_f_swap_2128, &_call_f_swap_2128); - methods += new qt_gsi::GenericMethod ("toDer", "@brief Method QByteArray QSslCertificate::toDer()\n", true, &_init_f_toDer_c0, &_call_f_toDer_c0); - methods += new qt_gsi::GenericMethod ("toPem", "@brief Method QByteArray QSslCertificate::toPem()\n", true, &_init_f_toPem_c0, &_call_f_toPem_c0); - methods += new qt_gsi::GenericMethod ("toText", "@brief Method QString QSslCertificate::toText()\n", true, &_init_f_toText_c0, &_call_f_toText_c0); - methods += new qt_gsi::GenericMethod ("version", "@brief Method QByteArray QSslCertificate::version()\n", true, &_init_f_version_c0, &_call_f_version_c0); - methods += new qt_gsi::GenericStaticMethod ("fromData", "@brief Static method QList QSslCertificate::fromData(const QByteArray &data, QSsl::EncodingFormat format)\nThis method is static and can be called without an instance.", &_init_f_fromData_4564, &_call_f_fromData_4564); - methods += new qt_gsi::GenericStaticMethod ("fromDevice", "@brief Static method QList QSslCertificate::fromDevice(QIODevice *device, QSsl::EncodingFormat format)\nThis method is static and can be called without an instance.", &_init_f_fromDevice_3702, &_call_f_fromDevice_3702); - methods += new qt_gsi::GenericStaticMethod ("fromPath", "@brief Static method QList QSslCertificate::fromPath(const QString &path, QSsl::EncodingFormat format, QRegExp::PatternSyntax syntax)\nThis method is static and can be called without an instance.", &_init_f_fromPath_6773, &_call_f_fromPath_6773); - methods += new qt_gsi::GenericStaticMethod ("importPkcs12", "@brief Static method bool QSslCertificate::importPkcs12(QIODevice *device, QSslKey *key, QSslCertificate *cert, QList *caCertificates, const QByteArray &passPhrase)\nThis method is static and can be called without an instance.", &_init_f_importPkcs12_9509, &_call_f_importPkcs12_9509); - methods += new qt_gsi::GenericStaticMethod ("verify", "@brief Static method QList QSslCertificate::verify(QList certificateChain, const QString &hostName)\nThis method is static and can be called without an instance.", &_init_f_verify_4478, &_call_f_verify_4478); - return methods; -} - -gsi::Class decl_QSslCertificate ("QtMultimedia", "QSslCertificate", - methods_QSslCertificate (), - "@qt\n@brief Binding of QSslCertificate"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslCertificate () { return decl_QSslCertificate; } - -} - - -// Implementation of the enum wrapper class for QSslCertificate::SubjectInfo -namespace qt_gsi -{ - -static gsi::Enum decl_QSslCertificate_SubjectInfo_Enum ("QtMultimedia", "QSslCertificate_SubjectInfo", - gsi::enum_const ("Organization", QSslCertificate::Organization, "@brief Enum constant QSslCertificate::Organization") + - gsi::enum_const ("CommonName", QSslCertificate::CommonName, "@brief Enum constant QSslCertificate::CommonName") + - gsi::enum_const ("LocalityName", QSslCertificate::LocalityName, "@brief Enum constant QSslCertificate::LocalityName") + - gsi::enum_const ("OrganizationalUnitName", QSslCertificate::OrganizationalUnitName, "@brief Enum constant QSslCertificate::OrganizationalUnitName") + - gsi::enum_const ("CountryName", QSslCertificate::CountryName, "@brief Enum constant QSslCertificate::CountryName") + - gsi::enum_const ("StateOrProvinceName", QSslCertificate::StateOrProvinceName, "@brief Enum constant QSslCertificate::StateOrProvinceName") + - gsi::enum_const ("DistinguishedNameQualifier", QSslCertificate::DistinguishedNameQualifier, "@brief Enum constant QSslCertificate::DistinguishedNameQualifier") + - gsi::enum_const ("SerialNumber", QSslCertificate::SerialNumber, "@brief Enum constant QSslCertificate::SerialNumber") + - gsi::enum_const ("EmailAddress", QSslCertificate::EmailAddress, "@brief Enum constant QSslCertificate::EmailAddress"), - "@qt\n@brief This class represents the QSslCertificate::SubjectInfo enum"); - -static gsi::QFlagsClass decl_QSslCertificate_SubjectInfo_Enums ("QtMultimedia", "QSslCertificate_QFlags_SubjectInfo", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSslCertificate_SubjectInfo_Enum_in_parent (decl_QSslCertificate_SubjectInfo_Enum.defs ()); -static gsi::ClassExt decl_QSslCertificate_SubjectInfo_Enum_as_child (decl_QSslCertificate_SubjectInfo_Enum, "SubjectInfo"); -static gsi::ClassExt decl_QSslCertificate_SubjectInfo_Enums_as_child (decl_QSslCertificate_SubjectInfo_Enums, "QFlags_SubjectInfo"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCertificateExtension.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCertificateExtension.cc deleted file mode 100644 index 7d9abe45d..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCertificateExtension.cc +++ /dev/null @@ -1,213 +0,0 @@ - -/* - - 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 gsiDeclQSslCertificateExtension.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslCertificateExtension - -// Constructor QSslCertificateExtension::QSslCertificateExtension() - - -static void _init_ctor_QSslCertificateExtension_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QSslCertificateExtension_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QSslCertificateExtension ()); -} - - -// Constructor QSslCertificateExtension::QSslCertificateExtension(const QSslCertificateExtension &other) - - -static void _init_ctor_QSslCertificateExtension_3780 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslCertificateExtension_3780 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificateExtension &arg1 = args.read (heap); - ret.write (new QSslCertificateExtension (arg1)); -} - - -// bool QSslCertificateExtension::isCritical() - - -static void _init_f_isCritical_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isCritical_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslCertificateExtension *)cls)->isCritical ()); -} - - -// bool QSslCertificateExtension::isSupported() - - -static void _init_f_isSupported_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isSupported_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslCertificateExtension *)cls)->isSupported ()); -} - - -// QString QSslCertificateExtension::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslCertificateExtension *)cls)->name ()); -} - - -// QString QSslCertificateExtension::oid() - - -static void _init_f_oid_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_oid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslCertificateExtension *)cls)->oid ()); -} - - -// QSslCertificateExtension &QSslCertificateExtension::operator=(const QSslCertificateExtension &other) - - -static void _init_f_operator_eq__3780 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3780 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificateExtension &arg1 = args.read (heap); - ret.write ((QSslCertificateExtension &)((QSslCertificateExtension *)cls)->operator= (arg1)); -} - - -// void QSslCertificateExtension::swap(QSslCertificateExtension &other) - - -static void _init_f_swap_3085 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_3085 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QSslCertificateExtension &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslCertificateExtension *)cls)->swap (arg1); -} - - -// QVariant QSslCertificateExtension::value() - - -static void _init_f_value_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_value_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QVariant)((QSslCertificateExtension *)cls)->value ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QSslCertificateExtension () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCertificateExtension::QSslCertificateExtension()\nThis method creates an object of class QSslCertificateExtension.", &_init_ctor_QSslCertificateExtension_0, &_call_ctor_QSslCertificateExtension_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCertificateExtension::QSslCertificateExtension(const QSslCertificateExtension &other)\nThis method creates an object of class QSslCertificateExtension.", &_init_ctor_QSslCertificateExtension_3780, &_call_ctor_QSslCertificateExtension_3780); - methods += new qt_gsi::GenericMethod ("isCritical?", "@brief Method bool QSslCertificateExtension::isCritical()\n", true, &_init_f_isCritical_c0, &_call_f_isCritical_c0); - methods += new qt_gsi::GenericMethod ("isSupported?", "@brief Method bool QSslCertificateExtension::isSupported()\n", true, &_init_f_isSupported_c0, &_call_f_isSupported_c0); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QSslCertificateExtension::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("oid", "@brief Method QString QSslCertificateExtension::oid()\n", true, &_init_f_oid_c0, &_call_f_oid_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSslCertificateExtension &QSslCertificateExtension::operator=(const QSslCertificateExtension &other)\n", false, &_init_f_operator_eq__3780, &_call_f_operator_eq__3780); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QSslCertificateExtension::swap(QSslCertificateExtension &other)\n", false, &_init_f_swap_3085, &_call_f_swap_3085); - methods += new qt_gsi::GenericMethod ("value", "@brief Method QVariant QSslCertificateExtension::value()\n", true, &_init_f_value_c0, &_call_f_value_c0); - return methods; -} - -gsi::Class decl_QSslCertificateExtension ("QtMultimedia", "QSslCertificateExtension", - methods_QSslCertificateExtension (), - "@qt\n@brief Binding of QSslCertificateExtension"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslCertificateExtension () { return decl_QSslCertificateExtension; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCipher.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCipher.cc deleted file mode 100644 index 102d4987d..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslCipher.cc +++ /dev/null @@ -1,360 +0,0 @@ - -/* - - 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 gsiDeclQSslCipher.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslCipher - -// Constructor QSslCipher::QSslCipher() - - -static void _init_ctor_QSslCipher_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QSslCipher_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QSslCipher ()); -} - - -// Constructor QSslCipher::QSslCipher(const QString &name) - - -static void _init_ctor_QSslCipher_2025 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslCipher_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write (new QSslCipher (arg1)); -} - - -// Constructor QSslCipher::QSslCipher(const QString &name, QSsl::SslProtocol protocol) - - -static void _init_ctor_QSslCipher_4012 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("protocol"); - decl->add_arg::target_type & > (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QSslCipher_4012 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - ret.write (new QSslCipher (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); -} - - -// Constructor QSslCipher::QSslCipher(const QSslCipher &other) - - -static void _init_ctor_QSslCipher_2303 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslCipher_2303 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); - ret.write (new QSslCipher (arg1)); -} - - -// QString QSslCipher::authenticationMethod() - - -static void _init_f_authenticationMethod_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_authenticationMethod_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslCipher *)cls)->authenticationMethod ()); -} - - -// QString QSslCipher::encryptionMethod() - - -static void _init_f_encryptionMethod_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_encryptionMethod_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslCipher *)cls)->encryptionMethod ()); -} - - -// bool QSslCipher::isNull() - - -static void _init_f_isNull_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isNull_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslCipher *)cls)->isNull ()); -} - - -// QString QSslCipher::keyExchangeMethod() - - -static void _init_f_keyExchangeMethod_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_keyExchangeMethod_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslCipher *)cls)->keyExchangeMethod ()); -} - - -// QString QSslCipher::name() - - -static void _init_f_name_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_name_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslCipher *)cls)->name ()); -} - - -// bool QSslCipher::operator!=(const QSslCipher &other) - - -static void _init_f_operator_excl__eq__c2303 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2303 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); - ret.write ((bool)((QSslCipher *)cls)->operator!= (arg1)); -} - - -// QSslCipher &QSslCipher::operator=(const QSslCipher &other) - - -static void _init_f_operator_eq__2303 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2303 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); - ret.write ((QSslCipher &)((QSslCipher *)cls)->operator= (arg1)); -} - - -// bool QSslCipher::operator==(const QSslCipher &other) - - -static void _init_f_operator_eq__eq__c2303 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2303 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); - ret.write ((bool)((QSslCipher *)cls)->operator== (arg1)); -} - - -// QSsl::SslProtocol QSslCipher::protocol() - - -static void _init_f_protocol_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_protocol_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslCipher *)cls)->protocol ())); -} - - -// QString QSslCipher::protocolString() - - -static void _init_f_protocolString_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_protocolString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslCipher *)cls)->protocolString ()); -} - - -// int QSslCipher::supportedBits() - - -static void _init_f_supportedBits_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_supportedBits_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QSslCipher *)cls)->supportedBits ()); -} - - -// void QSslCipher::swap(QSslCipher &other) - - -static void _init_f_swap_1608 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_1608 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QSslCipher &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslCipher *)cls)->swap (arg1); -} - - -// int QSslCipher::usedBits() - - -static void _init_f_usedBits_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_usedBits_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QSslCipher *)cls)->usedBits ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QSslCipher () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCipher::QSslCipher()\nThis method creates an object of class QSslCipher.", &_init_ctor_QSslCipher_0, &_call_ctor_QSslCipher_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCipher::QSslCipher(const QString &name)\nThis method creates an object of class QSslCipher.", &_init_ctor_QSslCipher_2025, &_call_ctor_QSslCipher_2025); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCipher::QSslCipher(const QString &name, QSsl::SslProtocol protocol)\nThis method creates an object of class QSslCipher.", &_init_ctor_QSslCipher_4012, &_call_ctor_QSslCipher_4012); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslCipher::QSslCipher(const QSslCipher &other)\nThis method creates an object of class QSslCipher.", &_init_ctor_QSslCipher_2303, &_call_ctor_QSslCipher_2303); - methods += new qt_gsi::GenericMethod ("authenticationMethod", "@brief Method QString QSslCipher::authenticationMethod()\n", true, &_init_f_authenticationMethod_c0, &_call_f_authenticationMethod_c0); - methods += new qt_gsi::GenericMethod ("encryptionMethod", "@brief Method QString QSslCipher::encryptionMethod()\n", true, &_init_f_encryptionMethod_c0, &_call_f_encryptionMethod_c0); - methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QSslCipher::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); - methods += new qt_gsi::GenericMethod ("keyExchangeMethod", "@brief Method QString QSslCipher::keyExchangeMethod()\n", true, &_init_f_keyExchangeMethod_c0, &_call_f_keyExchangeMethod_c0); - methods += new qt_gsi::GenericMethod ("name", "@brief Method QString QSslCipher::name()\n", true, &_init_f_name_c0, &_call_f_name_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QSslCipher::operator!=(const QSslCipher &other)\n", true, &_init_f_operator_excl__eq__c2303, &_call_f_operator_excl__eq__c2303); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSslCipher &QSslCipher::operator=(const QSslCipher &other)\n", false, &_init_f_operator_eq__2303, &_call_f_operator_eq__2303); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QSslCipher::operator==(const QSslCipher &other)\n", true, &_init_f_operator_eq__eq__c2303, &_call_f_operator_eq__eq__c2303); - methods += new qt_gsi::GenericMethod ("protocol", "@brief Method QSsl::SslProtocol QSslCipher::protocol()\n", true, &_init_f_protocol_c0, &_call_f_protocol_c0); - methods += new qt_gsi::GenericMethod ("protocolString", "@brief Method QString QSslCipher::protocolString()\n", true, &_init_f_protocolString_c0, &_call_f_protocolString_c0); - methods += new qt_gsi::GenericMethod ("supportedBits", "@brief Method int QSslCipher::supportedBits()\n", true, &_init_f_supportedBits_c0, &_call_f_supportedBits_c0); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QSslCipher::swap(QSslCipher &other)\n", false, &_init_f_swap_1608, &_call_f_swap_1608); - methods += new qt_gsi::GenericMethod ("usedBits", "@brief Method int QSslCipher::usedBits()\n", true, &_init_f_usedBits_c0, &_call_f_usedBits_c0); - return methods; -} - -gsi::Class decl_QSslCipher ("QtMultimedia", "QSslCipher", - methods_QSslCipher (), - "@qt\n@brief Binding of QSslCipher"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslCipher () { return decl_QSslCipher; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslConfiguration.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslConfiguration.cc deleted file mode 100644 index e1ec60617..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslConfiguration.cc +++ /dev/null @@ -1,862 +0,0 @@ - -/* - - 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 gsiDeclQSslConfiguration.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslConfiguration - -// Constructor QSslConfiguration::QSslConfiguration() - - -static void _init_ctor_QSslConfiguration_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QSslConfiguration_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QSslConfiguration ()); -} - - -// Constructor QSslConfiguration::QSslConfiguration(const QSslConfiguration &other) - - -static void _init_ctor_QSslConfiguration_3068 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslConfiguration_3068 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); - ret.write (new QSslConfiguration (arg1)); -} - - -// QList QSslConfiguration::allowedNextProtocols() - - -static void _init_f_allowedNextProtocols_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_allowedNextProtocols_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslConfiguration *)cls)->allowedNextProtocols ()); -} - - -// QList QSslConfiguration::caCertificates() - - -static void _init_f_caCertificates_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_caCertificates_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslConfiguration *)cls)->caCertificates ()); -} - - -// QList QSslConfiguration::ciphers() - - -static void _init_f_ciphers_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_ciphers_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslConfiguration *)cls)->ciphers ()); -} - - -// QVector QSslConfiguration::ellipticCurves() - - -static void _init_f_ellipticCurves_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_ellipticCurves_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QVector)((QSslConfiguration *)cls)->ellipticCurves ()); -} - - -// bool QSslConfiguration::isNull() - - -static void _init_f_isNull_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isNull_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslConfiguration *)cls)->isNull ()); -} - - -// QSslCertificate QSslConfiguration::localCertificate() - - -static void _init_f_localCertificate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_localCertificate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslCertificate)((QSslConfiguration *)cls)->localCertificate ()); -} - - -// QList QSslConfiguration::localCertificateChain() - - -static void _init_f_localCertificateChain_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_localCertificateChain_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslConfiguration *)cls)->localCertificateChain ()); -} - - -// QByteArray QSslConfiguration::nextNegotiatedProtocol() - - -static void _init_f_nextNegotiatedProtocol_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_nextNegotiatedProtocol_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslConfiguration *)cls)->nextNegotiatedProtocol ()); -} - - -// QSslConfiguration::NextProtocolNegotiationStatus QSslConfiguration::nextProtocolNegotiationStatus() - - -static void _init_f_nextProtocolNegotiationStatus_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_nextProtocolNegotiationStatus_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslConfiguration *)cls)->nextProtocolNegotiationStatus ())); -} - - -// bool QSslConfiguration::operator!=(const QSslConfiguration &other) - - -static void _init_f_operator_excl__eq__c3068 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c3068 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); - ret.write ((bool)((QSslConfiguration *)cls)->operator!= (arg1)); -} - - -// QSslConfiguration &QSslConfiguration::operator=(const QSslConfiguration &other) - - -static void _init_f_operator_eq__3068 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__3068 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); - ret.write ((QSslConfiguration &)((QSslConfiguration *)cls)->operator= (arg1)); -} - - -// bool QSslConfiguration::operator==(const QSslConfiguration &other) - - -static void _init_f_operator_eq__eq__c3068 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c3068 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); - ret.write ((bool)((QSslConfiguration *)cls)->operator== (arg1)); -} - - -// QSslCertificate QSslConfiguration::peerCertificate() - - -static void _init_f_peerCertificate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerCertificate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslCertificate)((QSslConfiguration *)cls)->peerCertificate ()); -} - - -// QList QSslConfiguration::peerCertificateChain() - - -static void _init_f_peerCertificateChain_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_peerCertificateChain_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslConfiguration *)cls)->peerCertificateChain ()); -} - - -// int QSslConfiguration::peerVerifyDepth() - - -static void _init_f_peerVerifyDepth_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerVerifyDepth_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QSslConfiguration *)cls)->peerVerifyDepth ()); -} - - -// QSslSocket::PeerVerifyMode QSslConfiguration::peerVerifyMode() - - -static void _init_f_peerVerifyMode_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_peerVerifyMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslConfiguration *)cls)->peerVerifyMode ())); -} - - -// QSslKey QSslConfiguration::privateKey() - - -static void _init_f_privateKey_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_privateKey_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslKey)((QSslConfiguration *)cls)->privateKey ()); -} - - -// QSsl::SslProtocol QSslConfiguration::protocol() - - -static void _init_f_protocol_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_protocol_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslConfiguration *)cls)->protocol ())); -} - - -// QSslCipher QSslConfiguration::sessionCipher() - - -static void _init_f_sessionCipher_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sessionCipher_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslCipher)((QSslConfiguration *)cls)->sessionCipher ()); -} - - -// QSsl::SslProtocol QSslConfiguration::sessionProtocol() - - -static void _init_f_sessionProtocol_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_sessionProtocol_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslConfiguration *)cls)->sessionProtocol ())); -} - - -// QByteArray QSslConfiguration::sessionTicket() - - -static void _init_f_sessionTicket_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sessionTicket_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslConfiguration *)cls)->sessionTicket ()); -} - - -// int QSslConfiguration::sessionTicketLifeTimeHint() - - -static void _init_f_sessionTicketLifeTimeHint_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sessionTicketLifeTimeHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QSslConfiguration *)cls)->sessionTicketLifeTimeHint ()); -} - - -// void QSslConfiguration::setAllowedNextProtocols(QList protocols) - - -static void _init_f_setAllowedNextProtocols_2047 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("protocols"); - decl->add_arg > (argspec_0); - decl->set_return (); -} - -static void _call_f_setAllowedNextProtocols_2047 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QList arg1 = args.read > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setAllowedNextProtocols (arg1); -} - - -// void QSslConfiguration::setCaCertificates(const QList &certificates) - - -static void _init_f_setCaCertificates_3438 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificates"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setCaCertificates (arg1); -} - - -// void QSslConfiguration::setCiphers(const QList &ciphers) - - -static void _init_f_setCiphers_2918 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ciphers"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setCiphers_2918 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setCiphers (arg1); -} - - -// void QSslConfiguration::setEllipticCurves(const QVector &curves) - - -static void _init_f_setEllipticCurves_3869 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("curves"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setEllipticCurves_3869 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QVector &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setEllipticCurves (arg1); -} - - -// void QSslConfiguration::setLocalCertificate(const QSslCertificate &certificate) - - -static void _init_f_setLocalCertificate_2823 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificate"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setLocalCertificate_2823 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setLocalCertificate (arg1); -} - - -// void QSslConfiguration::setLocalCertificateChain(const QList &localChain) - - -static void _init_f_setLocalCertificateChain_3438 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("localChain"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setLocalCertificateChain_3438 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setLocalCertificateChain (arg1); -} - - -// void QSslConfiguration::setPeerVerifyDepth(int depth) - - -static void _init_f_setPeerVerifyDepth_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("depth"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPeerVerifyDepth_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setPeerVerifyDepth (arg1); -} - - -// void QSslConfiguration::setPeerVerifyMode(QSslSocket::PeerVerifyMode mode) - - -static void _init_f_setPeerVerifyMode_2970 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("mode"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setPeerVerifyMode_2970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setPeerVerifyMode (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// void QSslConfiguration::setPrivateKey(const QSslKey &key) - - -static void _init_f_setPrivateKey_1997 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("key"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPrivateKey_1997 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslKey &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setPrivateKey (arg1); -} - - -// void QSslConfiguration::setProtocol(QSsl::SslProtocol protocol) - - -static void _init_f_setProtocol_2095 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("protocol"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setProtocol_2095 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setProtocol (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// void QSslConfiguration::setSessionTicket(const QByteArray &sessionTicket) - - -static void _init_f_setSessionTicket_2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("sessionTicket"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setSessionTicket_2309 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setSessionTicket (arg1); -} - - -// void QSslConfiguration::setSslOption(QSsl::SslOption option, bool on) - - -static void _init_f_setSslOption_2634 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("option"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("on"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setSslOption_2634 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->setSslOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); -} - - -// void QSslConfiguration::swap(QSslConfiguration &other) - - -static void _init_f_swap_2373 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_2373 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QSslConfiguration &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslConfiguration *)cls)->swap (arg1); -} - - -// bool QSslConfiguration::testSslOption(QSsl::SslOption option) - - -static void _init_f_testSslOption_c1878 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("option"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_testSslOption_c1878 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((bool)((QSslConfiguration *)cls)->testSslOption (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// static QSslConfiguration QSslConfiguration::defaultConfiguration() - - -static void _init_f_defaultConfiguration_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_defaultConfiguration_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslConfiguration)QSslConfiguration::defaultConfiguration ()); -} - - -// static void QSslConfiguration::setDefaultConfiguration(const QSslConfiguration &configuration) - - -static void _init_f_setDefaultConfiguration_3068 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("configuration"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setDefaultConfiguration_3068 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QSslConfiguration::setDefaultConfiguration (arg1); -} - - -// static QList QSslConfiguration::supportedCiphers() - - -static void _init_f_supportedCiphers_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_supportedCiphers_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)QSslConfiguration::supportedCiphers ()); -} - - -// static QVector QSslConfiguration::supportedEllipticCurves() - - -static void _init_f_supportedEllipticCurves_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_supportedEllipticCurves_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QVector)QSslConfiguration::supportedEllipticCurves ()); -} - - -// static QList QSslConfiguration::systemCaCertificates() - - -static void _init_f_systemCaCertificates_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_systemCaCertificates_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)QSslConfiguration::systemCaCertificates ()); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QSslConfiguration () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslConfiguration::QSslConfiguration()\nThis method creates an object of class QSslConfiguration.", &_init_ctor_QSslConfiguration_0, &_call_ctor_QSslConfiguration_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslConfiguration::QSslConfiguration(const QSslConfiguration &other)\nThis method creates an object of class QSslConfiguration.", &_init_ctor_QSslConfiguration_3068, &_call_ctor_QSslConfiguration_3068); - methods += new qt_gsi::GenericMethod (":allowedNextProtocols", "@brief Method QList QSslConfiguration::allowedNextProtocols()\n", true, &_init_f_allowedNextProtocols_c0, &_call_f_allowedNextProtocols_c0); - methods += new qt_gsi::GenericMethod (":caCertificates", "@brief Method QList QSslConfiguration::caCertificates()\n", true, &_init_f_caCertificates_c0, &_call_f_caCertificates_c0); - methods += new qt_gsi::GenericMethod (":ciphers", "@brief Method QList QSslConfiguration::ciphers()\n", true, &_init_f_ciphers_c0, &_call_f_ciphers_c0); - methods += new qt_gsi::GenericMethod (":ellipticCurves", "@brief Method QVector QSslConfiguration::ellipticCurves()\n", true, &_init_f_ellipticCurves_c0, &_call_f_ellipticCurves_c0); - methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QSslConfiguration::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); - methods += new qt_gsi::GenericMethod (":localCertificate", "@brief Method QSslCertificate QSslConfiguration::localCertificate()\n", true, &_init_f_localCertificate_c0, &_call_f_localCertificate_c0); - methods += new qt_gsi::GenericMethod (":localCertificateChain", "@brief Method QList QSslConfiguration::localCertificateChain()\n", true, &_init_f_localCertificateChain_c0, &_call_f_localCertificateChain_c0); - methods += new qt_gsi::GenericMethod ("nextNegotiatedProtocol", "@brief Method QByteArray QSslConfiguration::nextNegotiatedProtocol()\n", true, &_init_f_nextNegotiatedProtocol_c0, &_call_f_nextNegotiatedProtocol_c0); - methods += new qt_gsi::GenericMethod ("nextProtocolNegotiationStatus", "@brief Method QSslConfiguration::NextProtocolNegotiationStatus QSslConfiguration::nextProtocolNegotiationStatus()\n", true, &_init_f_nextProtocolNegotiationStatus_c0, &_call_f_nextProtocolNegotiationStatus_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QSslConfiguration::operator!=(const QSslConfiguration &other)\n", true, &_init_f_operator_excl__eq__c3068, &_call_f_operator_excl__eq__c3068); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSslConfiguration &QSslConfiguration::operator=(const QSslConfiguration &other)\n", false, &_init_f_operator_eq__3068, &_call_f_operator_eq__3068); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QSslConfiguration::operator==(const QSslConfiguration &other)\n", true, &_init_f_operator_eq__eq__c3068, &_call_f_operator_eq__eq__c3068); - methods += new qt_gsi::GenericMethod ("peerCertificate", "@brief Method QSslCertificate QSslConfiguration::peerCertificate()\n", true, &_init_f_peerCertificate_c0, &_call_f_peerCertificate_c0); - methods += new qt_gsi::GenericMethod ("peerCertificateChain", "@brief Method QList QSslConfiguration::peerCertificateChain()\n", true, &_init_f_peerCertificateChain_c0, &_call_f_peerCertificateChain_c0); - methods += new qt_gsi::GenericMethod (":peerVerifyDepth", "@brief Method int QSslConfiguration::peerVerifyDepth()\n", true, &_init_f_peerVerifyDepth_c0, &_call_f_peerVerifyDepth_c0); - methods += new qt_gsi::GenericMethod (":peerVerifyMode", "@brief Method QSslSocket::PeerVerifyMode QSslConfiguration::peerVerifyMode()\n", true, &_init_f_peerVerifyMode_c0, &_call_f_peerVerifyMode_c0); - methods += new qt_gsi::GenericMethod (":privateKey", "@brief Method QSslKey QSslConfiguration::privateKey()\n", true, &_init_f_privateKey_c0, &_call_f_privateKey_c0); - methods += new qt_gsi::GenericMethod (":protocol", "@brief Method QSsl::SslProtocol QSslConfiguration::protocol()\n", true, &_init_f_protocol_c0, &_call_f_protocol_c0); - methods += new qt_gsi::GenericMethod ("sessionCipher", "@brief Method QSslCipher QSslConfiguration::sessionCipher()\n", true, &_init_f_sessionCipher_c0, &_call_f_sessionCipher_c0); - methods += new qt_gsi::GenericMethod ("sessionProtocol", "@brief Method QSsl::SslProtocol QSslConfiguration::sessionProtocol()\n", true, &_init_f_sessionProtocol_c0, &_call_f_sessionProtocol_c0); - methods += new qt_gsi::GenericMethod (":sessionTicket", "@brief Method QByteArray QSslConfiguration::sessionTicket()\n", true, &_init_f_sessionTicket_c0, &_call_f_sessionTicket_c0); - methods += new qt_gsi::GenericMethod ("sessionTicketLifeTimeHint", "@brief Method int QSslConfiguration::sessionTicketLifeTimeHint()\n", true, &_init_f_sessionTicketLifeTimeHint_c0, &_call_f_sessionTicketLifeTimeHint_c0); - methods += new qt_gsi::GenericMethod ("setAllowedNextProtocols|allowedNextProtocols=", "@brief Method void QSslConfiguration::setAllowedNextProtocols(QList protocols)\n", false, &_init_f_setAllowedNextProtocols_2047, &_call_f_setAllowedNextProtocols_2047); - methods += new qt_gsi::GenericMethod ("setCaCertificates|caCertificates=", "@brief Method void QSslConfiguration::setCaCertificates(const QList &certificates)\n", false, &_init_f_setCaCertificates_3438, &_call_f_setCaCertificates_3438); - methods += new qt_gsi::GenericMethod ("setCiphers|ciphers=", "@brief Method void QSslConfiguration::setCiphers(const QList &ciphers)\n", false, &_init_f_setCiphers_2918, &_call_f_setCiphers_2918); - methods += new qt_gsi::GenericMethod ("setEllipticCurves|ellipticCurves=", "@brief Method void QSslConfiguration::setEllipticCurves(const QVector &curves)\n", false, &_init_f_setEllipticCurves_3869, &_call_f_setEllipticCurves_3869); - methods += new qt_gsi::GenericMethod ("setLocalCertificate|localCertificate=", "@brief Method void QSslConfiguration::setLocalCertificate(const QSslCertificate &certificate)\n", false, &_init_f_setLocalCertificate_2823, &_call_f_setLocalCertificate_2823); - methods += new qt_gsi::GenericMethod ("setLocalCertificateChain|localCertificateChain=", "@brief Method void QSslConfiguration::setLocalCertificateChain(const QList &localChain)\n", false, &_init_f_setLocalCertificateChain_3438, &_call_f_setLocalCertificateChain_3438); - methods += new qt_gsi::GenericMethod ("setPeerVerifyDepth|peerVerifyDepth=", "@brief Method void QSslConfiguration::setPeerVerifyDepth(int depth)\n", false, &_init_f_setPeerVerifyDepth_767, &_call_f_setPeerVerifyDepth_767); - methods += new qt_gsi::GenericMethod ("setPeerVerifyMode|peerVerifyMode=", "@brief Method void QSslConfiguration::setPeerVerifyMode(QSslSocket::PeerVerifyMode mode)\n", false, &_init_f_setPeerVerifyMode_2970, &_call_f_setPeerVerifyMode_2970); - methods += new qt_gsi::GenericMethod ("setPrivateKey|privateKey=", "@brief Method void QSslConfiguration::setPrivateKey(const QSslKey &key)\n", false, &_init_f_setPrivateKey_1997, &_call_f_setPrivateKey_1997); - methods += new qt_gsi::GenericMethod ("setProtocol|protocol=", "@brief Method void QSslConfiguration::setProtocol(QSsl::SslProtocol protocol)\n", false, &_init_f_setProtocol_2095, &_call_f_setProtocol_2095); - methods += new qt_gsi::GenericMethod ("setSessionTicket|sessionTicket=", "@brief Method void QSslConfiguration::setSessionTicket(const QByteArray &sessionTicket)\n", false, &_init_f_setSessionTicket_2309, &_call_f_setSessionTicket_2309); - methods += new qt_gsi::GenericMethod ("setSslOption", "@brief Method void QSslConfiguration::setSslOption(QSsl::SslOption option, bool on)\n", false, &_init_f_setSslOption_2634, &_call_f_setSslOption_2634); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QSslConfiguration::swap(QSslConfiguration &other)\n", false, &_init_f_swap_2373, &_call_f_swap_2373); - methods += new qt_gsi::GenericMethod ("testSslOption", "@brief Method bool QSslConfiguration::testSslOption(QSsl::SslOption option)\n", true, &_init_f_testSslOption_c1878, &_call_f_testSslOption_c1878); - methods += new qt_gsi::GenericStaticMethod (":defaultConfiguration", "@brief Static method QSslConfiguration QSslConfiguration::defaultConfiguration()\nThis method is static and can be called without an instance.", &_init_f_defaultConfiguration_0, &_call_f_defaultConfiguration_0); - methods += new qt_gsi::GenericStaticMethod ("setDefaultConfiguration|defaultConfiguration=", "@brief Static method void QSslConfiguration::setDefaultConfiguration(const QSslConfiguration &configuration)\nThis method is static and can be called without an instance.", &_init_f_setDefaultConfiguration_3068, &_call_f_setDefaultConfiguration_3068); - methods += new qt_gsi::GenericStaticMethod ("supportedCiphers", "@brief Static method QList QSslConfiguration::supportedCiphers()\nThis method is static and can be called without an instance.", &_init_f_supportedCiphers_0, &_call_f_supportedCiphers_0); - methods += new qt_gsi::GenericStaticMethod ("supportedEllipticCurves", "@brief Static method QVector QSslConfiguration::supportedEllipticCurves()\nThis method is static and can be called without an instance.", &_init_f_supportedEllipticCurves_0, &_call_f_supportedEllipticCurves_0); - methods += new qt_gsi::GenericStaticMethod ("systemCaCertificates", "@brief Static method QList QSslConfiguration::systemCaCertificates()\nThis method is static and can be called without an instance.", &_init_f_systemCaCertificates_0, &_call_f_systemCaCertificates_0); - return methods; -} - -gsi::Class decl_QSslConfiguration ("QtMultimedia", "QSslConfiguration", - methods_QSslConfiguration (), - "@qt\n@brief Binding of QSslConfiguration"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslConfiguration () { return decl_QSslConfiguration; } - -} - - -// Implementation of the enum wrapper class for QSslConfiguration::NextProtocolNegotiationStatus -namespace qt_gsi -{ - -static gsi::Enum decl_QSslConfiguration_NextProtocolNegotiationStatus_Enum ("QtMultimedia", "QSslConfiguration_NextProtocolNegotiationStatus", - gsi::enum_const ("NextProtocolNegotiationNone", QSslConfiguration::NextProtocolNegotiationNone, "@brief Enum constant QSslConfiguration::NextProtocolNegotiationNone") + - gsi::enum_const ("NextProtocolNegotiationNegotiated", QSslConfiguration::NextProtocolNegotiationNegotiated, "@brief Enum constant QSslConfiguration::NextProtocolNegotiationNegotiated") + - gsi::enum_const ("NextProtocolNegotiationUnsupported", QSslConfiguration::NextProtocolNegotiationUnsupported, "@brief Enum constant QSslConfiguration::NextProtocolNegotiationUnsupported"), - "@qt\n@brief This class represents the QSslConfiguration::NextProtocolNegotiationStatus enum"); - -static gsi::QFlagsClass decl_QSslConfiguration_NextProtocolNegotiationStatus_Enums ("QtMultimedia", "QSslConfiguration_QFlags_NextProtocolNegotiationStatus", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSslConfiguration_NextProtocolNegotiationStatus_Enum_in_parent (decl_QSslConfiguration_NextProtocolNegotiationStatus_Enum.defs ()); -static gsi::ClassExt decl_QSslConfiguration_NextProtocolNegotiationStatus_Enum_as_child (decl_QSslConfiguration_NextProtocolNegotiationStatus_Enum, "NextProtocolNegotiationStatus"); -static gsi::ClassExt decl_QSslConfiguration_NextProtocolNegotiationStatus_Enums_as_child (decl_QSslConfiguration_NextProtocolNegotiationStatus_Enums, "QFlags_NextProtocolNegotiationStatus"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslEllipticCurve.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslEllipticCurve.cc deleted file mode 100644 index aa132c757..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslEllipticCurve.cc +++ /dev/null @@ -1,188 +0,0 @@ - -/* - - 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 gsiDeclQSslEllipticCurve.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslEllipticCurve - -// Constructor QSslEllipticCurve::QSslEllipticCurve() - - -static void _init_ctor_QSslEllipticCurve_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QSslEllipticCurve_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QSslEllipticCurve ()); -} - - -// bool QSslEllipticCurve::isTlsNamedCurve() - - -static void _init_f_isTlsNamedCurve_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isTlsNamedCurve_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslEllipticCurve *)cls)->isTlsNamedCurve ()); -} - - -// bool QSslEllipticCurve::isValid() - - -static void _init_f_isValid_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isValid_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslEllipticCurve *)cls)->isValid ()); -} - - -// QString QSslEllipticCurve::longName() - - -static void _init_f_longName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_longName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslEllipticCurve *)cls)->longName ()); -} - - -// QString QSslEllipticCurve::shortName() - - -static void _init_f_shortName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_shortName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslEllipticCurve *)cls)->shortName ()); -} - - -// static QSslEllipticCurve QSslEllipticCurve::fromLongName(const QString &name) - - -static void _init_f_fromLongName_2025 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_fromLongName_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QSslEllipticCurve)QSslEllipticCurve::fromLongName (arg1)); -} - - -// static QSslEllipticCurve QSslEllipticCurve::fromShortName(const QString &name) - - -static void _init_f_fromShortName_2025 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("name"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_fromShortName_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - ret.write ((QSslEllipticCurve)QSslEllipticCurve::fromShortName (arg1)); -} - - -// bool ::operator==(QSslEllipticCurve lhs, QSslEllipticCurve rhs) -static bool op_QSslEllipticCurve_operator_eq__eq__4216(QSslEllipticCurve *_self, QSslEllipticCurve rhs) { - return ::operator==(*_self, rhs); -} - -// bool ::operator!=(QSslEllipticCurve lhs, QSslEllipticCurve rhs) -static bool op_QSslEllipticCurve_operator_excl__eq__4216(QSslEllipticCurve *_self, QSslEllipticCurve rhs) { - return ::operator!=(*_self, rhs); -} - - -namespace gsi -{ - -static gsi::Methods methods_QSslEllipticCurve () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslEllipticCurve::QSslEllipticCurve()\nThis method creates an object of class QSslEllipticCurve.", &_init_ctor_QSslEllipticCurve_0, &_call_ctor_QSslEllipticCurve_0); - methods += new qt_gsi::GenericMethod ("isTlsNamedCurve?", "@brief Method bool QSslEllipticCurve::isTlsNamedCurve()\n", true, &_init_f_isTlsNamedCurve_c0, &_call_f_isTlsNamedCurve_c0); - methods += new qt_gsi::GenericMethod ("isValid?", "@brief Method bool QSslEllipticCurve::isValid()\n", true, &_init_f_isValid_c0, &_call_f_isValid_c0); - methods += new qt_gsi::GenericMethod ("longName", "@brief Method QString QSslEllipticCurve::longName()\n", true, &_init_f_longName_c0, &_call_f_longName_c0); - methods += new qt_gsi::GenericMethod ("shortName", "@brief Method QString QSslEllipticCurve::shortName()\n", true, &_init_f_shortName_c0, &_call_f_shortName_c0); - methods += new qt_gsi::GenericStaticMethod ("fromLongName", "@brief Static method QSslEllipticCurve QSslEllipticCurve::fromLongName(const QString &name)\nThis method is static and can be called without an instance.", &_init_f_fromLongName_2025, &_call_f_fromLongName_2025); - methods += new qt_gsi::GenericStaticMethod ("fromShortName", "@brief Static method QSslEllipticCurve QSslEllipticCurve::fromShortName(const QString &name)\nThis method is static and can be called without an instance.", &_init_f_fromShortName_2025, &_call_f_fromShortName_2025); - methods += gsi::method_ext("==", &::op_QSslEllipticCurve_operator_eq__eq__4216, gsi::arg ("rhs"), "@brief Operator bool ::operator==(QSslEllipticCurve lhs, QSslEllipticCurve rhs)\nThis is the mapping of the global operator to the instance method."); - methods += gsi::method_ext("!=", &::op_QSslEllipticCurve_operator_excl__eq__4216, gsi::arg ("rhs"), "@brief Operator bool ::operator!=(QSslEllipticCurve lhs, QSslEllipticCurve rhs)\nThis is the mapping of the global operator to the instance method."); - return methods; -} - -gsi::Class decl_QSslEllipticCurve ("QtMultimedia", "QSslEllipticCurve", - methods_QSslEllipticCurve (), - "@qt\n@brief Binding of QSslEllipticCurve"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslEllipticCurve () { return decl_QSslEllipticCurve; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslError.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslError.cc deleted file mode 100644 index 195b816a5..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslError.cc +++ /dev/null @@ -1,309 +0,0 @@ - -/* - - 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 gsiDeclQSslError.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslError - -// Constructor QSslError::QSslError() - - -static void _init_ctor_QSslError_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QSslError_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QSslError ()); -} - - -// Constructor QSslError::QSslError(QSslError::SslError error) - - -static void _init_ctor_QSslError_2289 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("error"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslError_2289 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write (new QSslError (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// Constructor QSslError::QSslError(QSslError::SslError error, const QSslCertificate &certificate) - - -static void _init_ctor_QSslError_5004 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("error"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("certificate"); - decl->add_arg (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QSslError_5004 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSslCertificate &arg2 = args.read (heap); - ret.write (new QSslError (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); -} - - -// Constructor QSslError::QSslError(const QSslError &other) - - -static void _init_ctor_QSslError_2222 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslError_2222 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslError &arg1 = args.read (heap); - ret.write (new QSslError (arg1)); -} - - -// QSslCertificate QSslError::certificate() - - -static void _init_f_certificate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_certificate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslCertificate)((QSslError *)cls)->certificate ()); -} - - -// QSslError::SslError QSslError::error() - - -static void _init_f_error_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_error_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslError *)cls)->error ())); -} - - -// QString QSslError::errorString() - - -static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslError *)cls)->errorString ()); -} - - -// bool QSslError::operator!=(const QSslError &other) - - -static void _init_f_operator_excl__eq__c2222 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c2222 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslError &arg1 = args.read (heap); - ret.write ((bool)((QSslError *)cls)->operator!= (arg1)); -} - - -// QSslError &QSslError::operator=(const QSslError &other) - - -static void _init_f_operator_eq__2222 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__2222 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslError &arg1 = args.read (heap); - ret.write ((QSslError &)((QSslError *)cls)->operator= (arg1)); -} - - -// bool QSslError::operator==(const QSslError &other) - - -static void _init_f_operator_eq__eq__c2222 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c2222 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslError &arg1 = args.read (heap); - ret.write ((bool)((QSslError *)cls)->operator== (arg1)); -} - - -// void QSslError::swap(QSslError &other) - - -static void _init_f_swap_1527 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_1527 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QSslError &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslError *)cls)->swap (arg1); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QSslError () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslError::QSslError()\nThis method creates an object of class QSslError.", &_init_ctor_QSslError_0, &_call_ctor_QSslError_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslError::QSslError(QSslError::SslError error)\nThis method creates an object of class QSslError.", &_init_ctor_QSslError_2289, &_call_ctor_QSslError_2289); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslError::QSslError(QSslError::SslError error, const QSslCertificate &certificate)\nThis method creates an object of class QSslError.", &_init_ctor_QSslError_5004, &_call_ctor_QSslError_5004); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslError::QSslError(const QSslError &other)\nThis method creates an object of class QSslError.", &_init_ctor_QSslError_2222, &_call_ctor_QSslError_2222); - methods += new qt_gsi::GenericMethod ("certificate", "@brief Method QSslCertificate QSslError::certificate()\n", true, &_init_f_certificate_c0, &_call_f_certificate_c0); - methods += new qt_gsi::GenericMethod ("error", "@brief Method QSslError::SslError QSslError::error()\n", true, &_init_f_error_c0, &_call_f_error_c0); - methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QSslError::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QSslError::operator!=(const QSslError &other)\n", true, &_init_f_operator_excl__eq__c2222, &_call_f_operator_excl__eq__c2222); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSslError &QSslError::operator=(const QSslError &other)\n", false, &_init_f_operator_eq__2222, &_call_f_operator_eq__2222); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QSslError::operator==(const QSslError &other)\n", true, &_init_f_operator_eq__eq__c2222, &_call_f_operator_eq__eq__c2222); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QSslError::swap(QSslError &other)\n", false, &_init_f_swap_1527, &_call_f_swap_1527); - return methods; -} - -gsi::Class decl_QSslError ("QtMultimedia", "QSslError", - methods_QSslError (), - "@qt\n@brief Binding of QSslError"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslError () { return decl_QSslError; } - -} - - -// Implementation of the enum wrapper class for QSslError::SslError -namespace qt_gsi -{ - -static gsi::Enum decl_QSslError_SslError_Enum ("QtMultimedia", "QSslError_SslError", - gsi::enum_const ("NoError", QSslError::NoError, "@brief Enum constant QSslError::NoError") + - gsi::enum_const ("UnableToGetIssuerCertificate", QSslError::UnableToGetIssuerCertificate, "@brief Enum constant QSslError::UnableToGetIssuerCertificate") + - gsi::enum_const ("UnableToDecryptCertificateSignature", QSslError::UnableToDecryptCertificateSignature, "@brief Enum constant QSslError::UnableToDecryptCertificateSignature") + - gsi::enum_const ("UnableToDecodeIssuerPublicKey", QSslError::UnableToDecodeIssuerPublicKey, "@brief Enum constant QSslError::UnableToDecodeIssuerPublicKey") + - gsi::enum_const ("CertificateSignatureFailed", QSslError::CertificateSignatureFailed, "@brief Enum constant QSslError::CertificateSignatureFailed") + - gsi::enum_const ("CertificateNotYetValid", QSslError::CertificateNotYetValid, "@brief Enum constant QSslError::CertificateNotYetValid") + - gsi::enum_const ("CertificateExpired", QSslError::CertificateExpired, "@brief Enum constant QSslError::CertificateExpired") + - gsi::enum_const ("InvalidNotBeforeField", QSslError::InvalidNotBeforeField, "@brief Enum constant QSslError::InvalidNotBeforeField") + - gsi::enum_const ("InvalidNotAfterField", QSslError::InvalidNotAfterField, "@brief Enum constant QSslError::InvalidNotAfterField") + - gsi::enum_const ("SelfSignedCertificate", QSslError::SelfSignedCertificate, "@brief Enum constant QSslError::SelfSignedCertificate") + - gsi::enum_const ("SelfSignedCertificateInChain", QSslError::SelfSignedCertificateInChain, "@brief Enum constant QSslError::SelfSignedCertificateInChain") + - gsi::enum_const ("UnableToGetLocalIssuerCertificate", QSslError::UnableToGetLocalIssuerCertificate, "@brief Enum constant QSslError::UnableToGetLocalIssuerCertificate") + - gsi::enum_const ("UnableToVerifyFirstCertificate", QSslError::UnableToVerifyFirstCertificate, "@brief Enum constant QSslError::UnableToVerifyFirstCertificate") + - gsi::enum_const ("CertificateRevoked", QSslError::CertificateRevoked, "@brief Enum constant QSslError::CertificateRevoked") + - gsi::enum_const ("InvalidCaCertificate", QSslError::InvalidCaCertificate, "@brief Enum constant QSslError::InvalidCaCertificate") + - gsi::enum_const ("PathLengthExceeded", QSslError::PathLengthExceeded, "@brief Enum constant QSslError::PathLengthExceeded") + - gsi::enum_const ("InvalidPurpose", QSslError::InvalidPurpose, "@brief Enum constant QSslError::InvalidPurpose") + - gsi::enum_const ("CertificateUntrusted", QSslError::CertificateUntrusted, "@brief Enum constant QSslError::CertificateUntrusted") + - gsi::enum_const ("CertificateRejected", QSslError::CertificateRejected, "@brief Enum constant QSslError::CertificateRejected") + - gsi::enum_const ("SubjectIssuerMismatch", QSslError::SubjectIssuerMismatch, "@brief Enum constant QSslError::SubjectIssuerMismatch") + - gsi::enum_const ("AuthorityIssuerSerialNumberMismatch", QSslError::AuthorityIssuerSerialNumberMismatch, "@brief Enum constant QSslError::AuthorityIssuerSerialNumberMismatch") + - gsi::enum_const ("NoPeerCertificate", QSslError::NoPeerCertificate, "@brief Enum constant QSslError::NoPeerCertificate") + - gsi::enum_const ("HostNameMismatch", QSslError::HostNameMismatch, "@brief Enum constant QSslError::HostNameMismatch") + - gsi::enum_const ("NoSslSupport", QSslError::NoSslSupport, "@brief Enum constant QSslError::NoSslSupport") + - gsi::enum_const ("CertificateBlacklisted", QSslError::CertificateBlacklisted, "@brief Enum constant QSslError::CertificateBlacklisted") + - gsi::enum_const ("UnspecifiedError", QSslError::UnspecifiedError, "@brief Enum constant QSslError::UnspecifiedError"), - "@qt\n@brief This class represents the QSslError::SslError enum"); - -static gsi::QFlagsClass decl_QSslError_SslError_Enums ("QtMultimedia", "QSslError_QFlags_SslError", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSslError_SslError_Enum_in_parent (decl_QSslError_SslError_Enum.defs ()); -static gsi::ClassExt decl_QSslError_SslError_Enum_as_child (decl_QSslError_SslError_Enum, "SslError"); -static gsi::ClassExt decl_QSslError_SslError_Enums_as_child (decl_QSslError_SslError_Enums, "QFlags_SslError"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslKey.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslKey.cc deleted file mode 100644 index f71908c8f..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslKey.cc +++ /dev/null @@ -1,398 +0,0 @@ - -/* - - 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 gsiDeclQSslKey.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslKey - -// Constructor QSslKey::QSslKey() - - -static void _init_ctor_QSslKey_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QSslKey_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QSslKey ()); -} - - -// Constructor QSslKey::QSslKey(const QByteArray &encoded, QSsl::KeyAlgorithm algorithm, QSsl::EncodingFormat format, QSsl::KeyType type, const QByteArray &passPhrase) - - -static void _init_ctor_QSslKey_10374 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("encoded"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("algorithm"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_2); - static gsi::ArgSpecBase argspec_3 ("type", true, "QSsl::PrivateKey"); - decl->add_arg::target_type & > (argspec_3); - static gsi::ArgSpecBase argspec_4 ("passPhrase", true, "QByteArray()"); - decl->add_arg (argspec_4); - decl->set_return_new (); -} - -static void _call_ctor_QSslKey_10374 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey)); - const QByteArray &arg5 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - ret.write (new QSslKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref(), arg5)); -} - - -// Constructor QSslKey::QSslKey(QIODevice *device, QSsl::KeyAlgorithm algorithm, QSsl::EncodingFormat format, QSsl::KeyType type, const QByteArray &passPhrase) - - -static void _init_ctor_QSslKey_9512 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("device"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("algorithm"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_2); - static gsi::ArgSpecBase argspec_3 ("type", true, "QSsl::PrivateKey"); - decl->add_arg::target_type & > (argspec_3); - static gsi::ArgSpecBase argspec_4 ("passPhrase", true, "QByteArray()"); - decl->add_arg (argspec_4); - decl->set_return_new (); -} - -static void _call_ctor_QSslKey_9512 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey)); - const QByteArray &arg5 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - ret.write (new QSslKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref(), arg5)); -} - - -// Constructor QSslKey::QSslKey(Qt::HANDLE handle, QSsl::KeyType type) - - -static void _init_ctor_QSslKey_2723 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("handle"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("type", true, "QSsl::PrivateKey"); - decl->add_arg::target_type & > (argspec_1); - decl->set_return_new (); -} - -static void _call_ctor_QSslKey_2723 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - Qt::HANDLE arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey)); - ret.write (new QSslKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); -} - - -// Constructor QSslKey::QSslKey(const QSslKey &other) - - -static void _init_ctor_QSslKey_1997 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslKey_1997 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslKey &arg1 = args.read (heap); - ret.write (new QSslKey (arg1)); -} - - -// QSsl::KeyAlgorithm QSslKey::algorithm() - - -static void _init_f_algorithm_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_algorithm_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslKey *)cls)->algorithm ())); -} - - -// void QSslKey::clear() - - -static void _init_f_clear_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_clear_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslKey *)cls)->clear (); -} - - -// Qt::HANDLE QSslKey::handle() - - -static void _init_f_handle_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_handle_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((Qt::HANDLE)((QSslKey *)cls)->handle ()); -} - - -// bool QSslKey::isNull() - - -static void _init_f_isNull_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isNull_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslKey *)cls)->isNull ()); -} - - -// int QSslKey::length() - - -static void _init_f_length_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_length_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QSslKey *)cls)->length ()); -} - - -// bool QSslKey::operator!=(const QSslKey &key) - - -static void _init_f_operator_excl__eq__c1997 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("key"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_excl__eq__c1997 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslKey &arg1 = args.read (heap); - ret.write ((bool)((QSslKey *)cls)->operator!= (arg1)); -} - - -// QSslKey &QSslKey::operator=(const QSslKey &other) - - -static void _init_f_operator_eq__1997 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__1997 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslKey &arg1 = args.read (heap); - ret.write ((QSslKey &)((QSslKey *)cls)->operator= (arg1)); -} - - -// bool QSslKey::operator==(const QSslKey &key) - - -static void _init_f_operator_eq__eq__c1997 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("key"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__eq__c1997 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslKey &arg1 = args.read (heap); - ret.write ((bool)((QSslKey *)cls)->operator== (arg1)); -} - - -// void QSslKey::swap(QSslKey &other) - - -static void _init_f_swap_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("other"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QSslKey &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslKey *)cls)->swap (arg1); -} - - -// QByteArray QSslKey::toDer(const QByteArray &passPhrase) - - -static void _init_f_toDer_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("passPhrase", true, "QByteArray()"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_toDer_c2309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - ret.write ((QByteArray)((QSslKey *)cls)->toDer (arg1)); -} - - -// QByteArray QSslKey::toPem(const QByteArray &passPhrase) - - -static void _init_f_toPem_c2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("passPhrase", true, "QByteArray()"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_toPem_c2309 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - ret.write ((QByteArray)((QSslKey *)cls)->toPem (arg1)); -} - - -// QSsl::KeyType QSslKey::type() - - -static void _init_f_type_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_type_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslKey *)cls)->type ())); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QSslKey () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslKey::QSslKey()\nThis method creates an object of class QSslKey.", &_init_ctor_QSslKey_0, &_call_ctor_QSslKey_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslKey::QSslKey(const QByteArray &encoded, QSsl::KeyAlgorithm algorithm, QSsl::EncodingFormat format, QSsl::KeyType type, const QByteArray &passPhrase)\nThis method creates an object of class QSslKey.", &_init_ctor_QSslKey_10374, &_call_ctor_QSslKey_10374); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslKey::QSslKey(QIODevice *device, QSsl::KeyAlgorithm algorithm, QSsl::EncodingFormat format, QSsl::KeyType type, const QByteArray &passPhrase)\nThis method creates an object of class QSslKey.", &_init_ctor_QSslKey_9512, &_call_ctor_QSslKey_9512); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslKey::QSslKey(Qt::HANDLE handle, QSsl::KeyType type)\nThis method creates an object of class QSslKey.", &_init_ctor_QSslKey_2723, &_call_ctor_QSslKey_2723); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslKey::QSslKey(const QSslKey &other)\nThis method creates an object of class QSslKey.", &_init_ctor_QSslKey_1997, &_call_ctor_QSslKey_1997); - methods += new qt_gsi::GenericMethod ("algorithm", "@brief Method QSsl::KeyAlgorithm QSslKey::algorithm()\n", true, &_init_f_algorithm_c0, &_call_f_algorithm_c0); - methods += new qt_gsi::GenericMethod ("clear", "@brief Method void QSslKey::clear()\n", false, &_init_f_clear_0, &_call_f_clear_0); - methods += new qt_gsi::GenericMethod ("handle", "@brief Method Qt::HANDLE QSslKey::handle()\n", true, &_init_f_handle_c0, &_call_f_handle_c0); - methods += new qt_gsi::GenericMethod ("isNull?", "@brief Method bool QSslKey::isNull()\n", true, &_init_f_isNull_c0, &_call_f_isNull_c0); - methods += new qt_gsi::GenericMethod ("length", "@brief Method int QSslKey::length()\n", true, &_init_f_length_c0, &_call_f_length_c0); - methods += new qt_gsi::GenericMethod ("!=", "@brief Method bool QSslKey::operator!=(const QSslKey &key)\n", true, &_init_f_operator_excl__eq__c1997, &_call_f_operator_excl__eq__c1997); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSslKey &QSslKey::operator=(const QSslKey &other)\n", false, &_init_f_operator_eq__1997, &_call_f_operator_eq__1997); - methods += new qt_gsi::GenericMethod ("==", "@brief Method bool QSslKey::operator==(const QSslKey &key)\n", true, &_init_f_operator_eq__eq__c1997, &_call_f_operator_eq__eq__c1997); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QSslKey::swap(QSslKey &other)\n", false, &_init_f_swap_1302, &_call_f_swap_1302); - methods += new qt_gsi::GenericMethod ("toDer", "@brief Method QByteArray QSslKey::toDer(const QByteArray &passPhrase)\n", true, &_init_f_toDer_c2309, &_call_f_toDer_c2309); - methods += new qt_gsi::GenericMethod ("toPem", "@brief Method QByteArray QSslKey::toPem(const QByteArray &passPhrase)\n", true, &_init_f_toPem_c2309, &_call_f_toPem_c2309); - methods += new qt_gsi::GenericMethod ("type", "@brief Method QSsl::KeyType QSslKey::type()\n", true, &_init_f_type_c0, &_call_f_type_c0); - return methods; -} - -gsi::Class decl_QSslKey ("QtMultimedia", "QSslKey", - methods_QSslKey (), - "@qt\n@brief Binding of QSslKey"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslKey () { return decl_QSslKey; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslPreSharedKeyAuthenticator.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslPreSharedKeyAuthenticator.cc deleted file mode 100644 index 3bab350b5..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslPreSharedKeyAuthenticator.cc +++ /dev/null @@ -1,261 +0,0 @@ - -/* - - 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 gsiDeclQSslPreSharedKeyAuthenticator.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslPreSharedKeyAuthenticator - -// Constructor QSslPreSharedKeyAuthenticator::QSslPreSharedKeyAuthenticator() - - -static void _init_ctor_QSslPreSharedKeyAuthenticator_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return_new (); -} - -static void _call_ctor_QSslPreSharedKeyAuthenticator_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write (new QSslPreSharedKeyAuthenticator ()); -} - - -// Constructor QSslPreSharedKeyAuthenticator::QSslPreSharedKeyAuthenticator(const QSslPreSharedKeyAuthenticator &authenticator) - - -static void _init_ctor_QSslPreSharedKeyAuthenticator_4262 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("authenticator"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslPreSharedKeyAuthenticator_4262 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslPreSharedKeyAuthenticator &arg1 = args.read (heap); - ret.write (new QSslPreSharedKeyAuthenticator (arg1)); -} - - -// QByteArray QSslPreSharedKeyAuthenticator::identity() - - -static void _init_f_identity_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_identity_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslPreSharedKeyAuthenticator *)cls)->identity ()); -} - - -// QByteArray QSslPreSharedKeyAuthenticator::identityHint() - - -static void _init_f_identityHint_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_identityHint_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslPreSharedKeyAuthenticator *)cls)->identityHint ()); -} - - -// int QSslPreSharedKeyAuthenticator::maximumIdentityLength() - - -static void _init_f_maximumIdentityLength_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_maximumIdentityLength_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QSslPreSharedKeyAuthenticator *)cls)->maximumIdentityLength ()); -} - - -// int QSslPreSharedKeyAuthenticator::maximumPreSharedKeyLength() - - -static void _init_f_maximumPreSharedKeyLength_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_maximumPreSharedKeyLength_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QSslPreSharedKeyAuthenticator *)cls)->maximumPreSharedKeyLength ()); -} - - -// QSslPreSharedKeyAuthenticator &QSslPreSharedKeyAuthenticator::operator=(const QSslPreSharedKeyAuthenticator &authenticator) - - -static void _init_f_operator_eq__4262 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("authenticator"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_operator_eq__4262 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslPreSharedKeyAuthenticator &arg1 = args.read (heap); - ret.write ((QSslPreSharedKeyAuthenticator &)((QSslPreSharedKeyAuthenticator *)cls)->operator= (arg1)); -} - - -// QByteArray QSslPreSharedKeyAuthenticator::preSharedKey() - - -static void _init_f_preSharedKey_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_preSharedKey_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QByteArray)((QSslPreSharedKeyAuthenticator *)cls)->preSharedKey ()); -} - - -// void QSslPreSharedKeyAuthenticator::setIdentity(const QByteArray &identity) - - -static void _init_f_setIdentity_2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("identity"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setIdentity_2309 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslPreSharedKeyAuthenticator *)cls)->setIdentity (arg1); -} - - -// void QSslPreSharedKeyAuthenticator::setPreSharedKey(const QByteArray &preSharedKey) - - -static void _init_f_setPreSharedKey_2309 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("preSharedKey"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPreSharedKey_2309 (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 (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslPreSharedKeyAuthenticator *)cls)->setPreSharedKey (arg1); -} - - -// void QSslPreSharedKeyAuthenticator::swap(QSslPreSharedKeyAuthenticator &authenticator) - - -static void _init_f_swap_3567 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("authenticator"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_swap_3567 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QSslPreSharedKeyAuthenticator &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslPreSharedKeyAuthenticator *)cls)->swap (arg1); -} - - -// bool ::operator!=(const QSslPreSharedKeyAuthenticator &lhs, const QSslPreSharedKeyAuthenticator &rhs) -static bool op_QSslPreSharedKeyAuthenticator_operator_excl__eq__8416(const QSslPreSharedKeyAuthenticator *_self, const QSslPreSharedKeyAuthenticator &rhs) { - return ::operator!=(*_self, rhs); -} - - -namespace gsi -{ - -static gsi::Methods methods_QSslPreSharedKeyAuthenticator () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslPreSharedKeyAuthenticator::QSslPreSharedKeyAuthenticator()\nThis method creates an object of class QSslPreSharedKeyAuthenticator.", &_init_ctor_QSslPreSharedKeyAuthenticator_0, &_call_ctor_QSslPreSharedKeyAuthenticator_0); - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslPreSharedKeyAuthenticator::QSslPreSharedKeyAuthenticator(const QSslPreSharedKeyAuthenticator &authenticator)\nThis method creates an object of class QSslPreSharedKeyAuthenticator.", &_init_ctor_QSslPreSharedKeyAuthenticator_4262, &_call_ctor_QSslPreSharedKeyAuthenticator_4262); - methods += new qt_gsi::GenericMethod (":identity", "@brief Method QByteArray QSslPreSharedKeyAuthenticator::identity()\n", true, &_init_f_identity_c0, &_call_f_identity_c0); - methods += new qt_gsi::GenericMethod ("identityHint", "@brief Method QByteArray QSslPreSharedKeyAuthenticator::identityHint()\n", true, &_init_f_identityHint_c0, &_call_f_identityHint_c0); - methods += new qt_gsi::GenericMethod ("maximumIdentityLength", "@brief Method int QSslPreSharedKeyAuthenticator::maximumIdentityLength()\n", true, &_init_f_maximumIdentityLength_c0, &_call_f_maximumIdentityLength_c0); - methods += new qt_gsi::GenericMethod ("maximumPreSharedKeyLength", "@brief Method int QSslPreSharedKeyAuthenticator::maximumPreSharedKeyLength()\n", true, &_init_f_maximumPreSharedKeyLength_c0, &_call_f_maximumPreSharedKeyLength_c0); - methods += new qt_gsi::GenericMethod ("assign", "@brief Method QSslPreSharedKeyAuthenticator &QSslPreSharedKeyAuthenticator::operator=(const QSslPreSharedKeyAuthenticator &authenticator)\n", false, &_init_f_operator_eq__4262, &_call_f_operator_eq__4262); - methods += new qt_gsi::GenericMethod (":preSharedKey", "@brief Method QByteArray QSslPreSharedKeyAuthenticator::preSharedKey()\n", true, &_init_f_preSharedKey_c0, &_call_f_preSharedKey_c0); - methods += new qt_gsi::GenericMethod ("setIdentity|identity=", "@brief Method void QSslPreSharedKeyAuthenticator::setIdentity(const QByteArray &identity)\n", false, &_init_f_setIdentity_2309, &_call_f_setIdentity_2309); - methods += new qt_gsi::GenericMethod ("setPreSharedKey|preSharedKey=", "@brief Method void QSslPreSharedKeyAuthenticator::setPreSharedKey(const QByteArray &preSharedKey)\n", false, &_init_f_setPreSharedKey_2309, &_call_f_setPreSharedKey_2309); - methods += new qt_gsi::GenericMethod ("swap", "@brief Method void QSslPreSharedKeyAuthenticator::swap(QSslPreSharedKeyAuthenticator &authenticator)\n", false, &_init_f_swap_3567, &_call_f_swap_3567); - methods += gsi::method_ext("!=", &::op_QSslPreSharedKeyAuthenticator_operator_excl__eq__8416, gsi::arg ("rhs"), "@brief Operator bool ::operator!=(const QSslPreSharedKeyAuthenticator &lhs, const QSslPreSharedKeyAuthenticator &rhs)\nThis is the mapping of the global operator to the instance method."); - return methods; -} - -gsi::Class decl_QSslPreSharedKeyAuthenticator ("QtMultimedia", "QSslPreSharedKeyAuthenticator", - methods_QSslPreSharedKeyAuthenticator (), - "@qt\n@brief Binding of QSslPreSharedKeyAuthenticator"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslPreSharedKeyAuthenticator () { return decl_QSslPreSharedKeyAuthenticator; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslSocket.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslSocket.cc deleted file mode 100644 index bc8cd075d..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSslSocket.cc +++ /dev/null @@ -1,1659 +0,0 @@ - -/* - - 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 gsiDeclQSslSocket.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QSslSocket - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QSslSocket::staticMetaObject); -} - - -// Constructor QSslSocket::QSslSocket(QObject *parent) - - -static void _init_ctor_QSslSocket_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QSslSocket_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QSslSocket (arg1)); -} - - -// () - - -static void _init_f_abort_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_abort_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->abort (); -} - - -// void QSslSocket::addCaCertificate(const QSslCertificate &certificate) - - -static void _init_f_addCaCertificate_2823 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificate"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_addCaCertificate_2823 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->addCaCertificate (arg1); -} - - -// bool QSslSocket::addCaCertificates(const QString &path, QSsl::EncodingFormat format, QRegExp::PatternSyntax syntax) - - -static void _init_f_addCaCertificates_6773 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("path"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("syntax", true, "QRegExp::FixedString"); - decl->add_arg::target_type & > (argspec_2); - decl->set_return (); -} - -static void _call_f_addCaCertificates_6773 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); - ret.write ((bool)((QSslSocket *)cls)->addCaCertificates (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); -} - - -// void QSslSocket::addCaCertificates(const QList &certificates) - - -static void _init_f_addCaCertificates_3438 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificates"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_addCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->addCaCertificates (arg1); -} - - -// () const - - -static void _init_f_atEnd_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_atEnd_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslSocket *)cls)->atEnd ()); -} - - -// () const - - -static void _init_f_bytesAvailable_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QSslSocket *)cls)->bytesAvailable ()); -} - - -// () const - - -static void _init_f_bytesToWrite_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_bytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QSslSocket *)cls)->bytesToWrite ()); -} - - -// QList QSslSocket::caCertificates() - - -static void _init_f_caCertificates_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_caCertificates_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslSocket *)cls)->caCertificates ()); -} - - -// () const - - -static void _init_f_canReadLine_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_canReadLine_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslSocket *)cls)->canReadLine ()); -} - - -// QList QSslSocket::ciphers() - - -static void _init_f_ciphers_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_ciphers_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslSocket *)cls)->ciphers ()); -} - - -// () - - -static void _init_f_close_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_close_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->close (); -} - - -// (const QHostAddress &, quint16, QFlags) - - -static void _init_f_connectToHost_6644 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("mode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_2); - decl->set_return (); -} - -static void _call_f_connectToHost_6644 (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 (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->connectToHost (arg1, arg2, arg3); -} - - -// (const QString &, quint16, QFlags, QAbstractSocket::NetworkLayerProtocol) - - -static void _init_f_connectToHost_10218 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("openMode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_2); - static gsi::ArgSpecBase argspec_3 ("protocol", true, "QAbstractSocket::AnyIPProtocol"); - decl->add_arg::target_type & > (argspec_3); - decl->set_return (); -} - -static void _call_f_connectToHost_10218 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol)); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->connectToHost (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); -} - - -// void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol) - - -static void _init_f_connectToHostEncrypted_10218 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("mode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_2); - static gsi::ArgSpecBase argspec_3 ("protocol", true, "QAbstractSocket::AnyIPProtocol"); - decl->add_arg::target_type & > (argspec_3); - decl->set_return (); -} - -static void _call_f_connectToHostEncrypted_10218 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol)); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->connectToHostEncrypted (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); -} - - -// void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port, const QString &sslPeerName, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol) - - -static void _init_f_connectToHostEncrypted_12135 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("sslPeerName"); - decl->add_arg (argspec_2); - static gsi::ArgSpecBase argspec_3 ("mode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_3); - static gsi::ArgSpecBase argspec_4 ("protocol", true, "QAbstractSocket::AnyIPProtocol"); - decl->add_arg::target_type & > (argspec_4); - decl->set_return (); -} - -static void _call_f_connectToHostEncrypted_12135 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol)); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->connectToHostEncrypted (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); -} - - -// () - - -static void _init_f_disconnectFromHost_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_disconnectFromHost_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->disconnectFromHost (); -} - - -// qint64 QSslSocket::encryptedBytesAvailable() - - -static void _init_f_encryptedBytesAvailable_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_encryptedBytesAvailable_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QSslSocket *)cls)->encryptedBytesAvailable ()); -} - - -// qint64 QSslSocket::encryptedBytesToWrite() - - -static void _init_f_encryptedBytesToWrite_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_encryptedBytesToWrite_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((qint64)((QSslSocket *)cls)->encryptedBytesToWrite ()); -} - - -// () - - -static void _init_f_flush_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_flush_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslSocket *)cls)->flush ()); -} - - -// void QSslSocket::ignoreSslErrors(const QList &errors) - - -static void _init_f_ignoreSslErrors_2837 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("errors"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_ignoreSslErrors_2837 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->ignoreSslErrors (arg1); -} - - -// void QSslSocket::ignoreSslErrors() - - -static void _init_f_ignoreSslErrors_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_ignoreSslErrors_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->ignoreSslErrors (); -} - - -// bool QSslSocket::isEncrypted() - - -static void _init_f_isEncrypted_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isEncrypted_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QSslSocket *)cls)->isEncrypted ()); -} - - -// QSslCertificate QSslSocket::localCertificate() - - -static void _init_f_localCertificate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_localCertificate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslCertificate)((QSslSocket *)cls)->localCertificate ()); -} - - -// QList QSslSocket::localCertificateChain() - - -static void _init_f_localCertificateChain_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_localCertificateChain_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslSocket *)cls)->localCertificateChain ()); -} - - -// QSslSocket::SslMode QSslSocket::mode() - - -static void _init_f_mode_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_mode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslSocket *)cls)->mode ())); -} - - -// QSslCertificate QSslSocket::peerCertificate() - - -static void _init_f_peerCertificate_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerCertificate_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslCertificate)((QSslSocket *)cls)->peerCertificate ()); -} - - -// QList QSslSocket::peerCertificateChain() - - -static void _init_f_peerCertificateChain_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_peerCertificateChain_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslSocket *)cls)->peerCertificateChain ()); -} - - -// int QSslSocket::peerVerifyDepth() - - -static void _init_f_peerVerifyDepth_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerVerifyDepth_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QSslSocket *)cls)->peerVerifyDepth ()); -} - - -// QSslSocket::PeerVerifyMode QSslSocket::peerVerifyMode() - - -static void _init_f_peerVerifyMode_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_peerVerifyMode_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslSocket *)cls)->peerVerifyMode ())); -} - - -// QString QSslSocket::peerVerifyName() - - -static void _init_f_peerVerifyName_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_peerVerifyName_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QSslSocket *)cls)->peerVerifyName ()); -} - - -// QSslKey QSslSocket::privateKey() - - -static void _init_f_privateKey_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_privateKey_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslKey)((QSslSocket *)cls)->privateKey ()); -} - - -// QSsl::SslProtocol QSslSocket::protocol() - - -static void _init_f_protocol_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_protocol_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslSocket *)cls)->protocol ())); -} - - -// () - - -static void _init_f_resume_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_resume_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->resume (); -} - - -// QSslCipher QSslSocket::sessionCipher() - - -static void _init_f_sessionCipher_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sessionCipher_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslCipher)((QSslSocket *)cls)->sessionCipher ()); -} - - -// QSsl::SslProtocol QSslSocket::sessionProtocol() - - -static void _init_f_sessionProtocol_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_sessionProtocol_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QSslSocket *)cls)->sessionProtocol ())); -} - - -// void QSslSocket::setCaCertificates(const QList &certificates) - - -static void _init_f_setCaCertificates_3438 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificates"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setCaCertificates (arg1); -} - - -// void QSslSocket::setCiphers(const QList &ciphers) - - -static void _init_f_setCiphers_2918 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ciphers"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setCiphers_2918 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setCiphers (arg1); -} - - -// void QSslSocket::setCiphers(const QString &ciphers) - - -static void _init_f_setCiphers_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ciphers"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setCiphers_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setCiphers (arg1); -} - - -// void QSslSocket::setLocalCertificate(const QSslCertificate &certificate) - - -static void _init_f_setLocalCertificate_2823 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificate"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setLocalCertificate_2823 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setLocalCertificate (arg1); -} - - -// void QSslSocket::setLocalCertificate(const QString &fileName, QSsl::EncodingFormat format) - - -static void _init_f_setLocalCertificate_4280 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("fileName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_1); - decl->set_return (); -} - -static void _call_f_setLocalCertificate_4280 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setLocalCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); -} - - -// void QSslSocket::setLocalCertificateChain(const QList &localChain) - - -static void _init_f_setLocalCertificateChain_3438 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("localChain"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setLocalCertificateChain_3438 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setLocalCertificateChain (arg1); -} - - -// void QSslSocket::setPeerVerifyDepth(int depth) - - -static void _init_f_setPeerVerifyDepth_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("depth"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPeerVerifyDepth_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setPeerVerifyDepth (arg1); -} - - -// void QSslSocket::setPeerVerifyMode(QSslSocket::PeerVerifyMode mode) - - -static void _init_f_setPeerVerifyMode_2970 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("mode"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setPeerVerifyMode_2970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setPeerVerifyMode (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// void QSslSocket::setPeerVerifyName(const QString &hostName) - - -static void _init_f_setPeerVerifyName_2025 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("hostName"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPeerVerifyName_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setPeerVerifyName (arg1); -} - - -// void QSslSocket::setPrivateKey(const QSslKey &key) - - -static void _init_f_setPrivateKey_1997 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("key"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setPrivateKey_1997 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslKey &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setPrivateKey (arg1); -} - - -// void QSslSocket::setPrivateKey(const QString &fileName, QSsl::KeyAlgorithm algorithm, QSsl::EncodingFormat format, const QByteArray &passPhrase) - - -static void _init_f_setPrivateKey_8544 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("fileName"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("algorithm", true, "QSsl::Rsa"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_2); - static gsi::ArgSpecBase argspec_3 ("passPhrase", true, "QByteArray()"); - decl->add_arg (argspec_3); - decl->set_return (); -} - -static void _call_f_setPrivateKey_8544 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Rsa)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const QByteArray &arg4 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setPrivateKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4); -} - - -// void QSslSocket::setProtocol(QSsl::SslProtocol protocol) - - -static void _init_f_setProtocol_2095 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("protocol"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setProtocol_2095 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setProtocol (qt_gsi::QtToCppAdaptor(arg1).cref()); -} - - -// (qint64) - - -static void _init_f_setReadBufferSize_986 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("size"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - qint64 arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setReadBufferSize (arg1); -} - - -// (QIntegerForSizeof::Signed, QAbstractSocket::SocketState, QFlags) - - -static void _init_f_setSocketDescriptor_9696 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socketDescriptor"); - decl->add_arg::Signed > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("state", true, "QAbstractSocket::ConnectedState"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("openMode", true, "QIODevice::ReadWrite"); - decl->add_arg > (argspec_2); - decl->set_return (); -} - -static void _call_f_setSocketDescriptor_9696 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - ret.write ((bool)((QSslSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); -} - - -// (QAbstractSocket::SocketOption, const QVariant &) - - -static void _init_f_setSocketOption_5331 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("option"); - decl->add_arg::target_type & > (argspec_0); - static gsi::ArgSpecBase argspec_1 ("value"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_setSocketOption_5331 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setSocketOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); -} - - -// void QSslSocket::setSslConfiguration(const QSslConfiguration &config) - - -static void _init_f_setSslConfiguration_3068 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("config"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->setSslConfiguration (arg1); -} - - -// (QAbstractSocket::SocketOption) - - -static void _init_f_socketOption_3320 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("option"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_f_socketOption_3320 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ret.write ((QVariant)((QSslSocket *)cls)->socketOption (qt_gsi::QtToCppAdaptor(arg1).cref())); -} - - -// QSslConfiguration QSslSocket::sslConfiguration() - - -static void _init_f_sslConfiguration_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sslConfiguration_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QSslConfiguration)((QSslSocket *)cls)->sslConfiguration ()); -} - - -// QList QSslSocket::sslErrors() - - -static void _init_f_sslErrors_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_sslErrors_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)((QSslSocket *)cls)->sslErrors ()); -} - - -// void QSslSocket::startClientEncryption() - - -static void _init_f_startClientEncryption_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_startClientEncryption_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->startClientEncryption (); -} - - -// void QSslSocket::startServerEncryption() - - -static void _init_f_startServerEncryption_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_startServerEncryption_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QSslSocket *)cls)->startServerEncryption (); -} - - -// (int) - - -static void _init_f_waitForBytesWritten_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QSslSocket *)cls)->waitForBytesWritten (arg1)); -} - - -// (int) - - -static void _init_f_waitForConnected_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QSslSocket *)cls)->waitForConnected (arg1)); -} - - -// (int) - - -static void _init_f_waitForDisconnected_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QSslSocket *)cls)->waitForDisconnected (arg1)); -} - - -// bool QSslSocket::waitForEncrypted(int msecs) - - -static void _init_f_waitForEncrypted_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForEncrypted_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QSslSocket *)cls)->waitForEncrypted (arg1)); -} - - -// (int) - - -static void _init_f_waitForReadyRead_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msecs", true, "30000"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); - ret.write ((bool)((QSslSocket *)cls)->waitForReadyRead (arg1)); -} - - -// static void QSslSocket::addDefaultCaCertificate(const QSslCertificate &certificate) - - -static void _init_f_addDefaultCaCertificate_2823 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificate"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_addDefaultCaCertificate_2823 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QSslSocket::addDefaultCaCertificate (arg1); -} - - -// static bool QSslSocket::addDefaultCaCertificates(const QString &path, QSsl::EncodingFormat format, QRegExp::PatternSyntax syntax) - - -static void _init_f_addDefaultCaCertificates_6773 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("path"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("format", true, "QSsl::Pem"); - decl->add_arg::target_type & > (argspec_1); - static gsi::ArgSpecBase argspec_2 ("syntax", true, "QRegExp::FixedString"); - decl->add_arg::target_type & > (argspec_2); - decl->set_return (); -} - -static void _call_f_addDefaultCaCertificates_6773 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); - ret.write ((bool)QSslSocket::addDefaultCaCertificates (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); -} - - -// static void QSslSocket::addDefaultCaCertificates(const QList &certificates) - - -static void _init_f_addDefaultCaCertificates_3438 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificates"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_addDefaultCaCertificates_3438 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QSslSocket::addDefaultCaCertificates (arg1); -} - - -// static QList QSslSocket::defaultCaCertificates() - - -static void _init_f_defaultCaCertificates_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_defaultCaCertificates_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)QSslSocket::defaultCaCertificates ()); -} - - -// static QList QSslSocket::defaultCiphers() - - -static void _init_f_defaultCiphers_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_defaultCiphers_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)QSslSocket::defaultCiphers ()); -} - - -// static void QSslSocket::setDefaultCaCertificates(const QList &certificates) - - -static void _init_f_setDefaultCaCertificates_3438 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("certificates"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setDefaultCaCertificates_3438 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QSslSocket::setDefaultCaCertificates (arg1); -} - - -// static void QSslSocket::setDefaultCiphers(const QList &ciphers) - - -static void _init_f_setDefaultCiphers_2918 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("ciphers"); - decl->add_arg & > (argspec_0); - decl->set_return (); -} - -static void _call_f_setDefaultCiphers_2918 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QList &arg1 = args.read & > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - QSslSocket::setDefaultCiphers (arg1); -} - - -// static long int QSslSocket::sslLibraryBuildVersionNumber() - - -static void _init_f_sslLibraryBuildVersionNumber_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sslLibraryBuildVersionNumber_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((long int)QSslSocket::sslLibraryBuildVersionNumber ()); -} - - -// static QString QSslSocket::sslLibraryBuildVersionString() - - -static void _init_f_sslLibraryBuildVersionString_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sslLibraryBuildVersionString_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)QSslSocket::sslLibraryBuildVersionString ()); -} - - -// static long int QSslSocket::sslLibraryVersionNumber() - - -static void _init_f_sslLibraryVersionNumber_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sslLibraryVersionNumber_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((long int)QSslSocket::sslLibraryVersionNumber ()); -} - - -// static QString QSslSocket::sslLibraryVersionString() - - -static void _init_f_sslLibraryVersionString_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_sslLibraryVersionString_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)QSslSocket::sslLibraryVersionString ()); -} - - -// static QList QSslSocket::supportedCiphers() - - -static void _init_f_supportedCiphers_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_supportedCiphers_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)QSslSocket::supportedCiphers ()); -} - - -// static bool QSslSocket::supportsSsl() - - -static void _init_f_supportsSsl_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_supportsSsl_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)QSslSocket::supportsSsl ()); -} - - -// static QList QSslSocket::systemCaCertificates() - - -static void _init_f_systemCaCertificates_0 (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return > (); -} - -static void _call_f_systemCaCertificates_0 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write > ((QList)QSslSocket::systemCaCertificates ()); -} - - -// static QString QSslSocket::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QSslSocket::tr (arg1, arg2, arg3)); -} - - -// static QString QSslSocket::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QSslSocket::trUtf8 (arg1, arg2, arg3)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QSslSocket () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QSslSocket::QSslSocket(QObject *parent)\nThis method creates an object of class QSslSocket.", &_init_ctor_QSslSocket_1302, &_call_ctor_QSslSocket_1302); - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("abort", "@brief Method ()\n", false, &_init_f_abort_0, &_call_f_abort_0); - methods += new qt_gsi::GenericMethod ("addCaCertificate", "@brief Method void QSslSocket::addCaCertificate(const QSslCertificate &certificate)\n", false, &_init_f_addCaCertificate_2823, &_call_f_addCaCertificate_2823); - methods += new qt_gsi::GenericMethod ("addCaCertificates", "@brief Method bool QSslSocket::addCaCertificates(const QString &path, QSsl::EncodingFormat format, QRegExp::PatternSyntax syntax)\n", false, &_init_f_addCaCertificates_6773, &_call_f_addCaCertificates_6773); - methods += new qt_gsi::GenericMethod ("addCaCertificates", "@brief Method void QSslSocket::addCaCertificates(const QList &certificates)\n", false, &_init_f_addCaCertificates_3438, &_call_f_addCaCertificates_3438); - methods += new qt_gsi::GenericMethod ("atEnd", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::atEnd", true, &_init_f_atEnd_c0, &_call_f_atEnd_c0); - methods += new qt_gsi::GenericMethod ("bytesAvailable", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::bytesAvailable", true, &_init_f_bytesAvailable_c0, &_call_f_bytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("bytesToWrite", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::bytesToWrite", true, &_init_f_bytesToWrite_c0, &_call_f_bytesToWrite_c0); - methods += new qt_gsi::GenericMethod (":caCertificates", "@brief Method QList QSslSocket::caCertificates()\n", true, &_init_f_caCertificates_c0, &_call_f_caCertificates_c0); - methods += new qt_gsi::GenericMethod ("canReadLine", "@brief Method () const\nThis is a reimplementation of QAbstractSocket::canReadLine", true, &_init_f_canReadLine_c0, &_call_f_canReadLine_c0); - methods += new qt_gsi::GenericMethod (":ciphers", "@brief Method QList QSslSocket::ciphers()\n", true, &_init_f_ciphers_c0, &_call_f_ciphers_c0); - methods += new qt_gsi::GenericMethod ("close", "@brief Method ()\nThis is a reimplementation of QAbstractSocket::close", false, &_init_f_close_0, &_call_f_close_0); - methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method (const QHostAddress &, quint16, QFlags)\nThis is a reimplementation of QAbstractSocket::connectToHost", false, &_init_f_connectToHost_6644, &_call_f_connectToHost_6644); - methods += new qt_gsi::GenericMethod ("connectToHost", "@brief Method (const QString &, quint16, QFlags, QAbstractSocket::NetworkLayerProtocol)\nThis is a reimplementation of QAbstractSocket::connectToHost", false, &_init_f_connectToHost_10218, &_call_f_connectToHost_10218); - methods += new qt_gsi::GenericMethod ("connectToHostEncrypted", "@brief Method void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol)\n", false, &_init_f_connectToHostEncrypted_10218, &_call_f_connectToHostEncrypted_10218); - methods += new qt_gsi::GenericMethod ("connectToHostEncrypted", "@brief Method void QSslSocket::connectToHostEncrypted(const QString &hostName, quint16 port, const QString &sslPeerName, QFlags mode, QAbstractSocket::NetworkLayerProtocol protocol)\n", false, &_init_f_connectToHostEncrypted_12135, &_call_f_connectToHostEncrypted_12135); - methods += new qt_gsi::GenericMethod ("disconnectFromHost", "@brief Method ()\nThis is a reimplementation of QAbstractSocket::disconnectFromHost", false, &_init_f_disconnectFromHost_0, &_call_f_disconnectFromHost_0); - methods += new qt_gsi::GenericMethod ("encryptedBytesAvailable", "@brief Method qint64 QSslSocket::encryptedBytesAvailable()\n", true, &_init_f_encryptedBytesAvailable_c0, &_call_f_encryptedBytesAvailable_c0); - methods += new qt_gsi::GenericMethod ("encryptedBytesToWrite", "@brief Method qint64 QSslSocket::encryptedBytesToWrite()\n", true, &_init_f_encryptedBytesToWrite_c0, &_call_f_encryptedBytesToWrite_c0); - methods += new qt_gsi::GenericMethod ("flush", "@brief Method ()\n", false, &_init_f_flush_0, &_call_f_flush_0); - methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QSslSocket::ignoreSslErrors(const QList &errors)\n", false, &_init_f_ignoreSslErrors_2837, &_call_f_ignoreSslErrors_2837); - methods += new qt_gsi::GenericMethod ("ignoreSslErrors", "@brief Method void QSslSocket::ignoreSslErrors()\n", false, &_init_f_ignoreSslErrors_0, &_call_f_ignoreSslErrors_0); - methods += new qt_gsi::GenericMethod ("isEncrypted?", "@brief Method bool QSslSocket::isEncrypted()\n", true, &_init_f_isEncrypted_c0, &_call_f_isEncrypted_c0); - methods += new qt_gsi::GenericMethod (":localCertificate", "@brief Method QSslCertificate QSslSocket::localCertificate()\n", true, &_init_f_localCertificate_c0, &_call_f_localCertificate_c0); - methods += new qt_gsi::GenericMethod (":localCertificateChain", "@brief Method QList QSslSocket::localCertificateChain()\n", true, &_init_f_localCertificateChain_c0, &_call_f_localCertificateChain_c0); - methods += new qt_gsi::GenericMethod ("mode", "@brief Method QSslSocket::SslMode QSslSocket::mode()\n", true, &_init_f_mode_c0, &_call_f_mode_c0); - methods += new qt_gsi::GenericMethod ("peerCertificate", "@brief Method QSslCertificate QSslSocket::peerCertificate()\n", true, &_init_f_peerCertificate_c0, &_call_f_peerCertificate_c0); - methods += new qt_gsi::GenericMethod ("peerCertificateChain", "@brief Method QList QSslSocket::peerCertificateChain()\n", true, &_init_f_peerCertificateChain_c0, &_call_f_peerCertificateChain_c0); - methods += new qt_gsi::GenericMethod (":peerVerifyDepth", "@brief Method int QSslSocket::peerVerifyDepth()\n", true, &_init_f_peerVerifyDepth_c0, &_call_f_peerVerifyDepth_c0); - methods += new qt_gsi::GenericMethod (":peerVerifyMode", "@brief Method QSslSocket::PeerVerifyMode QSslSocket::peerVerifyMode()\n", true, &_init_f_peerVerifyMode_c0, &_call_f_peerVerifyMode_c0); - methods += new qt_gsi::GenericMethod (":peerVerifyName", "@brief Method QString QSslSocket::peerVerifyName()\n", true, &_init_f_peerVerifyName_c0, &_call_f_peerVerifyName_c0); - methods += new qt_gsi::GenericMethod (":privateKey", "@brief Method QSslKey QSslSocket::privateKey()\n", true, &_init_f_privateKey_c0, &_call_f_privateKey_c0); - methods += new qt_gsi::GenericMethod (":protocol", "@brief Method QSsl::SslProtocol QSslSocket::protocol()\n", true, &_init_f_protocol_c0, &_call_f_protocol_c0); - methods += new qt_gsi::GenericMethod ("resume", "@brief Method ()\nThis is a reimplementation of QAbstractSocket::resume", false, &_init_f_resume_0, &_call_f_resume_0); - methods += new qt_gsi::GenericMethod ("sessionCipher", "@brief Method QSslCipher QSslSocket::sessionCipher()\n", true, &_init_f_sessionCipher_c0, &_call_f_sessionCipher_c0); - methods += new qt_gsi::GenericMethod ("sessionProtocol", "@brief Method QSsl::SslProtocol QSslSocket::sessionProtocol()\n", true, &_init_f_sessionProtocol_c0, &_call_f_sessionProtocol_c0); - methods += new qt_gsi::GenericMethod ("setCaCertificates|caCertificates=", "@brief Method void QSslSocket::setCaCertificates(const QList &certificates)\n", false, &_init_f_setCaCertificates_3438, &_call_f_setCaCertificates_3438); - methods += new qt_gsi::GenericMethod ("setCiphers|ciphers=", "@brief Method void QSslSocket::setCiphers(const QList &ciphers)\n", false, &_init_f_setCiphers_2918, &_call_f_setCiphers_2918); - methods += new qt_gsi::GenericMethod ("setCiphers|ciphers=", "@brief Method void QSslSocket::setCiphers(const QString &ciphers)\n", false, &_init_f_setCiphers_2025, &_call_f_setCiphers_2025); - methods += new qt_gsi::GenericMethod ("setLocalCertificate|localCertificate=", "@brief Method void QSslSocket::setLocalCertificate(const QSslCertificate &certificate)\n", false, &_init_f_setLocalCertificate_2823, &_call_f_setLocalCertificate_2823); - methods += new qt_gsi::GenericMethod ("setLocalCertificate", "@brief Method void QSslSocket::setLocalCertificate(const QString &fileName, QSsl::EncodingFormat format)\n", false, &_init_f_setLocalCertificate_4280, &_call_f_setLocalCertificate_4280); - methods += new qt_gsi::GenericMethod ("setLocalCertificateChain|localCertificateChain=", "@brief Method void QSslSocket::setLocalCertificateChain(const QList &localChain)\n", false, &_init_f_setLocalCertificateChain_3438, &_call_f_setLocalCertificateChain_3438); - methods += new qt_gsi::GenericMethod ("setPeerVerifyDepth|peerVerifyDepth=", "@brief Method void QSslSocket::setPeerVerifyDepth(int depth)\n", false, &_init_f_setPeerVerifyDepth_767, &_call_f_setPeerVerifyDepth_767); - methods += new qt_gsi::GenericMethod ("setPeerVerifyMode|peerVerifyMode=", "@brief Method void QSslSocket::setPeerVerifyMode(QSslSocket::PeerVerifyMode mode)\n", false, &_init_f_setPeerVerifyMode_2970, &_call_f_setPeerVerifyMode_2970); - methods += new qt_gsi::GenericMethod ("setPeerVerifyName|peerVerifyName=", "@brief Method void QSslSocket::setPeerVerifyName(const QString &hostName)\n", false, &_init_f_setPeerVerifyName_2025, &_call_f_setPeerVerifyName_2025); - methods += new qt_gsi::GenericMethod ("setPrivateKey|privateKey=", "@brief Method void QSslSocket::setPrivateKey(const QSslKey &key)\n", false, &_init_f_setPrivateKey_1997, &_call_f_setPrivateKey_1997); - methods += new qt_gsi::GenericMethod ("setPrivateKey", "@brief Method void QSslSocket::setPrivateKey(const QString &fileName, QSsl::KeyAlgorithm algorithm, QSsl::EncodingFormat format, const QByteArray &passPhrase)\n", false, &_init_f_setPrivateKey_8544, &_call_f_setPrivateKey_8544); - methods += new qt_gsi::GenericMethod ("setProtocol|protocol=", "@brief Method void QSslSocket::setProtocol(QSsl::SslProtocol protocol)\n", false, &_init_f_setProtocol_2095, &_call_f_setProtocol_2095); - methods += new qt_gsi::GenericMethod ("setReadBufferSize|readBufferSize=", "@brief Method (qint64)\nThis is a reimplementation of QAbstractSocket::setReadBufferSize", false, &_init_f_setReadBufferSize_986, &_call_f_setReadBufferSize_986); - methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method (QIntegerForSizeof::Signed, QAbstractSocket::SocketState, QFlags)\nThis is a reimplementation of QAbstractSocket::setSocketDescriptor", false, &_init_f_setSocketDescriptor_9696, &_call_f_setSocketDescriptor_9696); - methods += new qt_gsi::GenericMethod ("setSocketOption", "@brief Method (QAbstractSocket::SocketOption, const QVariant &)\nThis is a reimplementation of QAbstractSocket::setSocketOption", false, &_init_f_setSocketOption_5331, &_call_f_setSocketOption_5331); - methods += new qt_gsi::GenericMethod ("setSslConfiguration|sslConfiguration=", "@brief Method void QSslSocket::setSslConfiguration(const QSslConfiguration &config)\n", false, &_init_f_setSslConfiguration_3068, &_call_f_setSslConfiguration_3068); - methods += new qt_gsi::GenericMethod ("socketOption", "@brief Method (QAbstractSocket::SocketOption)\nThis is a reimplementation of QAbstractSocket::socketOption", false, &_init_f_socketOption_3320, &_call_f_socketOption_3320); - methods += new qt_gsi::GenericMethod (":sslConfiguration", "@brief Method QSslConfiguration QSslSocket::sslConfiguration()\n", true, &_init_f_sslConfiguration_c0, &_call_f_sslConfiguration_c0); - methods += new qt_gsi::GenericMethod ("sslErrors", "@brief Method QList QSslSocket::sslErrors()\n", true, &_init_f_sslErrors_c0, &_call_f_sslErrors_c0); - methods += new qt_gsi::GenericMethod ("startClientEncryption", "@brief Method void QSslSocket::startClientEncryption()\n", false, &_init_f_startClientEncryption_0, &_call_f_startClientEncryption_0); - methods += new qt_gsi::GenericMethod ("startServerEncryption", "@brief Method void QSslSocket::startServerEncryption()\n", false, &_init_f_startServerEncryption_0, &_call_f_startServerEncryption_0); - methods += new qt_gsi::GenericMethod ("waitForBytesWritten", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForBytesWritten", false, &_init_f_waitForBytesWritten_767, &_call_f_waitForBytesWritten_767); - methods += new qt_gsi::GenericMethod ("waitForConnected", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForConnected", false, &_init_f_waitForConnected_767, &_call_f_waitForConnected_767); - methods += new qt_gsi::GenericMethod ("waitForDisconnected", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForDisconnected", false, &_init_f_waitForDisconnected_767, &_call_f_waitForDisconnected_767); - methods += new qt_gsi::GenericMethod ("waitForEncrypted", "@brief Method bool QSslSocket::waitForEncrypted(int msecs)\n", false, &_init_f_waitForEncrypted_767, &_call_f_waitForEncrypted_767); - methods += new qt_gsi::GenericMethod ("waitForReadyRead", "@brief Method (int)\nThis is a reimplementation of QAbstractSocket::waitForReadyRead", false, &_init_f_waitForReadyRead_767, &_call_f_waitForReadyRead_767); - methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QSslSocket::aboutToClose()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QSslSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QSslSocket::connected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QSslSocket::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("disconnected()", "disconnected", "@brief Signal declaration for QSslSocket::disconnected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("encrypted()", "encrypted", "@brief Signal declaration for QSslSocket::encrypted()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("encryptedBytesWritten(qint64)", "encryptedBytesWritten", gsi::arg("totalBytes"), "@brief Signal declaration for QSslSocket::encryptedBytesWritten(qint64 totalBytes)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("error(QAbstractSocket::SocketError)", "error_sig", gsi::arg("arg1"), "@brief Signal declaration for QSslSocket::error(QAbstractSocket::SocketError)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("hostFound()", "hostFound", "@brief Signal declaration for QSslSocket::hostFound()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("modeChanged(QSslSocket::SslMode)", "modeChanged", gsi::arg("newMode"), "@brief Signal declaration for QSslSocket::modeChanged(QSslSocket::SslMode newMode)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("peerVerifyError(const QSslError &)", "peerVerifyError", gsi::arg("error"), "@brief Signal declaration for QSslSocket::peerVerifyError(const QSslError &error)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("preSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator *)", "preSharedKeyAuthenticationRequired", gsi::arg("authenticator"), "@brief Signal declaration for QSslSocket::preSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator *authenticator)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("proxyAuthenticationRequired(const QNetworkProxy &, QAuthenticator *)", "proxyAuthenticationRequired", gsi::arg("proxy"), gsi::arg("authenticator"), "@brief Signal declaration for QSslSocket::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readChannelFinished()", "readChannelFinished", "@brief Signal declaration for QSslSocket::readChannelFinished()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readyRead()", "readyRead", "@brief Signal declaration for QSslSocket::readyRead()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal & > ("sslErrors(const QList &)", "sslErrors_sig", gsi::arg("errors"), "@brief Signal declaration for QSslSocket::sslErrors(const QList &errors)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("stateChanged(QAbstractSocket::SocketState)", "stateChanged", gsi::arg("arg1"), "@brief Signal declaration for QSslSocket::stateChanged(QAbstractSocket::SocketState)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("addDefaultCaCertificate", "@brief Static method void QSslSocket::addDefaultCaCertificate(const QSslCertificate &certificate)\nThis method is static and can be called without an instance.", &_init_f_addDefaultCaCertificate_2823, &_call_f_addDefaultCaCertificate_2823); - methods += new qt_gsi::GenericStaticMethod ("addDefaultCaCertificates", "@brief Static method bool QSslSocket::addDefaultCaCertificates(const QString &path, QSsl::EncodingFormat format, QRegExp::PatternSyntax syntax)\nThis method is static and can be called without an instance.", &_init_f_addDefaultCaCertificates_6773, &_call_f_addDefaultCaCertificates_6773); - methods += new qt_gsi::GenericStaticMethod ("addDefaultCaCertificates", "@brief Static method void QSslSocket::addDefaultCaCertificates(const QList &certificates)\nThis method is static and can be called without an instance.", &_init_f_addDefaultCaCertificates_3438, &_call_f_addDefaultCaCertificates_3438); - methods += new qt_gsi::GenericStaticMethod (":defaultCaCertificates", "@brief Static method QList QSslSocket::defaultCaCertificates()\nThis method is static and can be called without an instance.", &_init_f_defaultCaCertificates_0, &_call_f_defaultCaCertificates_0); - methods += new qt_gsi::GenericStaticMethod (":defaultCiphers", "@brief Static method QList QSslSocket::defaultCiphers()\nThis method is static and can be called without an instance.", &_init_f_defaultCiphers_0, &_call_f_defaultCiphers_0); - methods += new qt_gsi::GenericStaticMethod ("setDefaultCaCertificates|defaultCaCertificates=", "@brief Static method void QSslSocket::setDefaultCaCertificates(const QList &certificates)\nThis method is static and can be called without an instance.", &_init_f_setDefaultCaCertificates_3438, &_call_f_setDefaultCaCertificates_3438); - methods += new qt_gsi::GenericStaticMethod ("setDefaultCiphers|defaultCiphers=", "@brief Static method void QSslSocket::setDefaultCiphers(const QList &ciphers)\nThis method is static and can be called without an instance.", &_init_f_setDefaultCiphers_2918, &_call_f_setDefaultCiphers_2918); - methods += new qt_gsi::GenericStaticMethod ("sslLibraryBuildVersionNumber", "@brief Static method long int QSslSocket::sslLibraryBuildVersionNumber()\nThis method is static and can be called without an instance.", &_init_f_sslLibraryBuildVersionNumber_0, &_call_f_sslLibraryBuildVersionNumber_0); - methods += new qt_gsi::GenericStaticMethod ("sslLibraryBuildVersionString", "@brief Static method QString QSslSocket::sslLibraryBuildVersionString()\nThis method is static and can be called without an instance.", &_init_f_sslLibraryBuildVersionString_0, &_call_f_sslLibraryBuildVersionString_0); - methods += new qt_gsi::GenericStaticMethod ("sslLibraryVersionNumber", "@brief Static method long int QSslSocket::sslLibraryVersionNumber()\nThis method is static and can be called without an instance.", &_init_f_sslLibraryVersionNumber_0, &_call_f_sslLibraryVersionNumber_0); - methods += new qt_gsi::GenericStaticMethod ("sslLibraryVersionString", "@brief Static method QString QSslSocket::sslLibraryVersionString()\nThis method is static and can be called without an instance.", &_init_f_sslLibraryVersionString_0, &_call_f_sslLibraryVersionString_0); - methods += new qt_gsi::GenericStaticMethod ("supportedCiphers", "@brief Static method QList QSslSocket::supportedCiphers()\nThis method is static and can be called without an instance.", &_init_f_supportedCiphers_0, &_call_f_supportedCiphers_0); - methods += new qt_gsi::GenericStaticMethod ("supportsSsl", "@brief Static method bool QSslSocket::supportsSsl()\nThis method is static and can be called without an instance.", &_init_f_supportsSsl_0, &_call_f_supportsSsl_0); - methods += new qt_gsi::GenericStaticMethod ("systemCaCertificates", "@brief Static method QList QSslSocket::systemCaCertificates()\nThis method is static and can be called without an instance.", &_init_f_systemCaCertificates_0, &_call_f_systemCaCertificates_0); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QSslSocket::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 QSslSocket::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 &qtdecl_QTcpSocket (); - -qt_gsi::QtNativeClass decl_QSslSocket (qtdecl_QTcpSocket (), "QtMultimedia", "QSslSocket", - methods_QSslSocket (), - "@qt\n@brief Binding of QSslSocket"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSslSocket () { return decl_QSslSocket; } - -} - - -// Implementation of the enum wrapper class for QSslSocket::PeerVerifyMode -namespace qt_gsi -{ - -static gsi::Enum decl_QSslSocket_PeerVerifyMode_Enum ("QtMultimedia", "QSslSocket_PeerVerifyMode", - gsi::enum_const ("VerifyNone", QSslSocket::VerifyNone, "@brief Enum constant QSslSocket::VerifyNone") + - gsi::enum_const ("QueryPeer", QSslSocket::QueryPeer, "@brief Enum constant QSslSocket::QueryPeer") + - gsi::enum_const ("VerifyPeer", QSslSocket::VerifyPeer, "@brief Enum constant QSslSocket::VerifyPeer") + - gsi::enum_const ("AutoVerifyPeer", QSslSocket::AutoVerifyPeer, "@brief Enum constant QSslSocket::AutoVerifyPeer"), - "@qt\n@brief This class represents the QSslSocket::PeerVerifyMode enum"); - -static gsi::QFlagsClass decl_QSslSocket_PeerVerifyMode_Enums ("QtMultimedia", "QSslSocket_QFlags_PeerVerifyMode", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSslSocket_PeerVerifyMode_Enum_in_parent (decl_QSslSocket_PeerVerifyMode_Enum.defs ()); -static gsi::ClassExt decl_QSslSocket_PeerVerifyMode_Enum_as_child (decl_QSslSocket_PeerVerifyMode_Enum, "PeerVerifyMode"); -static gsi::ClassExt decl_QSslSocket_PeerVerifyMode_Enums_as_child (decl_QSslSocket_PeerVerifyMode_Enums, "QFlags_PeerVerifyMode"); - -} - - -// Implementation of the enum wrapper class for QSslSocket::SslMode -namespace qt_gsi -{ - -static gsi::Enum decl_QSslSocket_SslMode_Enum ("QtMultimedia", "QSslSocket_SslMode", - gsi::enum_const ("UnencryptedMode", QSslSocket::UnencryptedMode, "@brief Enum constant QSslSocket::UnencryptedMode") + - gsi::enum_const ("SslClientMode", QSslSocket::SslClientMode, "@brief Enum constant QSslSocket::SslClientMode") + - gsi::enum_const ("SslServerMode", QSslSocket::SslServerMode, "@brief Enum constant QSslSocket::SslServerMode"), - "@qt\n@brief This class represents the QSslSocket::SslMode enum"); - -static gsi::QFlagsClass decl_QSslSocket_SslMode_Enums ("QtMultimedia", "QSslSocket_QFlags_SslMode", - "@qt\n@brief This class represents the QFlags flag set"); - -// Inject the declarations into the parent -static gsi::ClassExt inject_QSslSocket_SslMode_Enum_in_parent (decl_QSslSocket_SslMode_Enum.defs ()); -static gsi::ClassExt decl_QSslSocket_SslMode_Enum_as_child (decl_QSslSocket_SslMode_Enum, "SslMode"); -static gsi::ClassExt decl_QSslSocket_SslMode_Enums_as_child (decl_QSslSocket_SslMode_Enums, "QFlags_SslMode"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQTcpServer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQTcpServer.cc deleted file mode 100644 index 5ff58461e..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQTcpServer.cc +++ /dev/null @@ -1,1064 +0,0 @@ - -/* - - 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 gsiDeclQTcpServer.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QTcpServer - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QTcpServer::staticMetaObject); -} - - -// void QTcpServer::close() - - -static void _init_f_close_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_close_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer *)cls)->close (); -} - - -// QString QTcpServer::errorString() - - -static void _init_f_errorString_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_errorString_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QString)((QTcpServer *)cls)->errorString ()); -} - - -// bool QTcpServer::hasPendingConnections() - - -static void _init_f_hasPendingConnections_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_hasPendingConnections_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QTcpServer *)cls)->hasPendingConnections ()); -} - - -// bool QTcpServer::isListening() - - -static void _init_f_isListening_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_isListening_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QTcpServer *)cls)->isListening ()); -} - - -// bool QTcpServer::listen(const QHostAddress &address, quint16 port) - - -static void _init_f_listen_3510 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("address", true, "QHostAddress::Any"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("port", true, "0"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_listen_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 ? args.read (heap) : (const QHostAddress &)(QHostAddress::Any); - quint16 arg2 = args ? args.read (heap) : (quint16)(0); - ret.write ((bool)((QTcpServer *)cls)->listen (arg1, arg2)); -} - - -// int QTcpServer::maxPendingConnections() - - -static void _init_f_maxPendingConnections_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_maxPendingConnections_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QTcpServer *)cls)->maxPendingConnections ()); -} - - -// QTcpSocket *QTcpServer::nextPendingConnection() - - -static void _init_f_nextPendingConnection_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_nextPendingConnection_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QTcpSocket *)((QTcpServer *)cls)->nextPendingConnection ()); -} - - -// void QTcpServer::pauseAccepting() - - -static void _init_f_pauseAccepting_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_pauseAccepting_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer *)cls)->pauseAccepting (); -} - - -// QNetworkProxy QTcpServer::proxy() - - -static void _init_f_proxy_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_proxy_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkProxy)((QTcpServer *)cls)->proxy ()); -} - - -// void QTcpServer::resumeAccepting() - - -static void _init_f_resumeAccepting_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_resumeAccepting_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer *)cls)->resumeAccepting (); -} - - -// QHostAddress QTcpServer::serverAddress() - - -static void _init_f_serverAddress_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_serverAddress_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QHostAddress)((QTcpServer *)cls)->serverAddress ()); -} - - -// QAbstractSocket::SocketError QTcpServer::serverError() - - -static void _init_f_serverError_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::target_type > (); -} - -static void _call_f_serverError_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QTcpServer *)cls)->serverError ())); -} - - -// quint16 QTcpServer::serverPort() - - -static void _init_f_serverPort_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_serverPort_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((quint16)((QTcpServer *)cls)->serverPort ()); -} - - -// void QTcpServer::setMaxPendingConnections(int numConnections) - - -static void _init_f_setMaxPendingConnections_767 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("numConnections"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setMaxPendingConnections_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer *)cls)->setMaxPendingConnections (arg1); -} - - -// void QTcpServer::setProxy(const QNetworkProxy &networkProxy) - - -static void _init_f_setProxy_2686 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("networkProxy"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer *)cls)->setProxy (arg1); -} - - -// bool QTcpServer::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor) - - -static void _init_f_setSocketDescriptor_3470 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socketDescriptor"); - decl->add_arg::Signed > (argspec_0); - decl->set_return (); -} - -static void _call_f_setSocketDescriptor_3470 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - ret.write ((bool)((QTcpServer *)cls)->setSocketDescriptor (arg1)); -} - - -// QIntegerForSizeof::Signed QTcpServer::socketDescriptor() - - -static void _init_f_socketDescriptor_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return::Signed > (); -} - -static void _call_f_socketDescriptor_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write::Signed > ((QIntegerForSizeof::Signed)((QTcpServer *)cls)->socketDescriptor ()); -} - - -// bool QTcpServer::waitForNewConnection(int msec, bool *timedOut) - - -static void _init_f_waitForNewConnection_1709 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("msec", true, "0"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("timedOut", true, "0"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_waitForNewConnection_1709 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - ret.write ((bool)((QTcpServer *)cls)->waitForNewConnection (arg1, arg2)); -} - - -// static QString QTcpServer::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QTcpServer::tr (arg1, arg2, arg3)); -} - - -// static QString QTcpServer::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QTcpServer::trUtf8 (arg1, arg2, arg3)); -} - - -namespace gsi -{ - -static gsi::Methods methods_QTcpServer () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += new qt_gsi::GenericMethod ("close", "@brief Method void QTcpServer::close()\n", false, &_init_f_close_0, &_call_f_close_0); - methods += new qt_gsi::GenericMethod ("errorString", "@brief Method QString QTcpServer::errorString()\n", true, &_init_f_errorString_c0, &_call_f_errorString_c0); - methods += new qt_gsi::GenericMethod ("hasPendingConnections", "@brief Method bool QTcpServer::hasPendingConnections()\n", true, &_init_f_hasPendingConnections_c0, &_call_f_hasPendingConnections_c0); - methods += new qt_gsi::GenericMethod ("isListening?", "@brief Method bool QTcpServer::isListening()\n", true, &_init_f_isListening_c0, &_call_f_isListening_c0); - methods += new qt_gsi::GenericMethod ("listen", "@brief Method bool QTcpServer::listen(const QHostAddress &address, quint16 port)\n", false, &_init_f_listen_3510, &_call_f_listen_3510); - methods += new qt_gsi::GenericMethod (":maxPendingConnections", "@brief Method int QTcpServer::maxPendingConnections()\n", true, &_init_f_maxPendingConnections_c0, &_call_f_maxPendingConnections_c0); - methods += new qt_gsi::GenericMethod ("nextPendingConnection", "@brief Method QTcpSocket *QTcpServer::nextPendingConnection()\n", false, &_init_f_nextPendingConnection_0, &_call_f_nextPendingConnection_0); - methods += new qt_gsi::GenericMethod ("pauseAccepting", "@brief Method void QTcpServer::pauseAccepting()\n", false, &_init_f_pauseAccepting_0, &_call_f_pauseAccepting_0); - methods += new qt_gsi::GenericMethod (":proxy", "@brief Method QNetworkProxy QTcpServer::proxy()\n", true, &_init_f_proxy_c0, &_call_f_proxy_c0); - methods += new qt_gsi::GenericMethod ("resumeAccepting", "@brief Method void QTcpServer::resumeAccepting()\n", false, &_init_f_resumeAccepting_0, &_call_f_resumeAccepting_0); - methods += new qt_gsi::GenericMethod ("serverAddress", "@brief Method QHostAddress QTcpServer::serverAddress()\n", true, &_init_f_serverAddress_c0, &_call_f_serverAddress_c0); - methods += new qt_gsi::GenericMethod ("serverError", "@brief Method QAbstractSocket::SocketError QTcpServer::serverError()\n", true, &_init_f_serverError_c0, &_call_f_serverError_c0); - methods += new qt_gsi::GenericMethod ("serverPort", "@brief Method quint16 QTcpServer::serverPort()\n", true, &_init_f_serverPort_c0, &_call_f_serverPort_c0); - methods += new qt_gsi::GenericMethod ("setMaxPendingConnections|maxPendingConnections=", "@brief Method void QTcpServer::setMaxPendingConnections(int numConnections)\n", false, &_init_f_setMaxPendingConnections_767, &_call_f_setMaxPendingConnections_767); - methods += new qt_gsi::GenericMethod ("setProxy|proxy=", "@brief Method void QTcpServer::setProxy(const QNetworkProxy &networkProxy)\n", false, &_init_f_setProxy_2686, &_call_f_setProxy_2686); - methods += new qt_gsi::GenericMethod ("setSocketDescriptor", "@brief Method bool QTcpServer::setSocketDescriptor(QIntegerForSizeof::Signed socketDescriptor)\n", false, &_init_f_setSocketDescriptor_3470, &_call_f_setSocketDescriptor_3470); - methods += new qt_gsi::GenericMethod ("socketDescriptor", "@brief Method QIntegerForSizeof::Signed QTcpServer::socketDescriptor()\n", true, &_init_f_socketDescriptor_c0, &_call_f_socketDescriptor_c0); - methods += new qt_gsi::GenericMethod ("waitForNewConnection", "@brief Method bool QTcpServer::waitForNewConnection(int msec, bool *timedOut)\n", false, &_init_f_waitForNewConnection_1709, &_call_f_waitForNewConnection_1709); - methods += gsi::qt_signal::target_type & > ("acceptError(QAbstractSocket::SocketError)", "acceptError", gsi::arg("socketError"), "@brief Signal declaration for QTcpServer::acceptError(QAbstractSocket::SocketError socketError)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QTcpServer::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("newConnection()", "newConnection", "@brief Signal declaration for QTcpServer::newConnection()\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QTcpServer::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 QTcpServer::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 &qtdecl_QObject (); - -qt_gsi::QtNativeClass decl_QTcpServer (qtdecl_QObject (), "QtMultimedia", "QTcpServer_Native", - methods_QTcpServer (), - "@hide\n@alias QTcpServer"); - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QTcpServer () { return decl_QTcpServer; } - -} - - -class QTcpServer_Adaptor : public QTcpServer, public qt_gsi::QtObjectBase -{ -public: - - virtual ~QTcpServer_Adaptor(); - - // [adaptor ctor] QTcpServer::QTcpServer(QObject *parent) - QTcpServer_Adaptor() : QTcpServer() - { - qt_gsi::QtObjectBase::init (this); - } - - // [adaptor ctor] QTcpServer::QTcpServer(QObject *parent) - QTcpServer_Adaptor(QObject *parent) : QTcpServer(parent) - { - qt_gsi::QtObjectBase::init (this); - } - - // [expose] void QTcpServer::addPendingConnection(QTcpSocket *socket) - void fp_QTcpServer_addPendingConnection_1615 (QTcpSocket *socket) { - QTcpServer::addPendingConnection(socket); - } - - // [expose] bool QTcpServer::isSignalConnected(const QMetaMethod &signal) - bool fp_QTcpServer_isSignalConnected_c2394 (const QMetaMethod &signal) const { - return QTcpServer::isSignalConnected(signal); - } - - // [expose] int QTcpServer::receivers(const char *signal) - int fp_QTcpServer_receivers_c1731 (const char *signal) const { - return QTcpServer::receivers(signal); - } - - // [expose] QObject *QTcpServer::sender() - QObject * fp_QTcpServer_sender_c0 () const { - return QTcpServer::sender(); - } - - // [expose] int QTcpServer::senderSignalIndex() - int fp_QTcpServer_senderSignalIndex_c0 () const { - return QTcpServer::senderSignalIndex(); - } - - // [emitter impl] void QTcpServer::acceptError(QAbstractSocket::SocketError socketError) - void emitter_QTcpServer_acceptError_3209(QAbstractSocket::SocketError socketError) - { - emit QTcpServer::acceptError(socketError); - } - - // [emitter impl] void QTcpServer::destroyed(QObject *) - void emitter_QTcpServer_destroyed_1302(QObject *arg1) - { - emit QTcpServer::destroyed(arg1); - } - - // [adaptor impl] bool QTcpServer::event(QEvent *) - bool cbs_event_1217_0(QEvent *arg1) - { - return QTcpServer::event(arg1); - } - - virtual bool event(QEvent *arg1) - { - if (cb_event_1217_0.can_issue()) { - return cb_event_1217_0.issue(&QTcpServer_Adaptor::cbs_event_1217_0, arg1); - } else { - return QTcpServer::event(arg1); - } - } - - // [adaptor impl] bool QTcpServer::eventFilter(QObject *, QEvent *) - bool cbs_eventFilter_2411_0(QObject *arg1, QEvent *arg2) - { - return QTcpServer::eventFilter(arg1, arg2); - } - - virtual bool eventFilter(QObject *arg1, QEvent *arg2) - { - if (cb_eventFilter_2411_0.can_issue()) { - return cb_eventFilter_2411_0.issue(&QTcpServer_Adaptor::cbs_eventFilter_2411_0, arg1, arg2); - } else { - return QTcpServer::eventFilter(arg1, arg2); - } - } - - // [adaptor impl] bool QTcpServer::hasPendingConnections() - bool cbs_hasPendingConnections_c0_0() const - { - return QTcpServer::hasPendingConnections(); - } - - virtual bool hasPendingConnections() const - { - if (cb_hasPendingConnections_c0_0.can_issue()) { - return cb_hasPendingConnections_c0_0.issue(&QTcpServer_Adaptor::cbs_hasPendingConnections_c0_0); - } else { - return QTcpServer::hasPendingConnections(); - } - } - - // [emitter impl] void QTcpServer::newConnection() - void emitter_QTcpServer_newConnection_0() - { - emit QTcpServer::newConnection(); - } - - // [adaptor impl] QTcpSocket *QTcpServer::nextPendingConnection() - QTcpSocket * cbs_nextPendingConnection_0_0() - { - return QTcpServer::nextPendingConnection(); - } - - virtual QTcpSocket * nextPendingConnection() - { - if (cb_nextPendingConnection_0_0.can_issue()) { - return cb_nextPendingConnection_0_0.issue(&QTcpServer_Adaptor::cbs_nextPendingConnection_0_0); - } else { - return QTcpServer::nextPendingConnection(); - } - } - - // [adaptor impl] void QTcpServer::childEvent(QChildEvent *) - void cbs_childEvent_1701_0(QChildEvent *arg1) - { - QTcpServer::childEvent(arg1); - } - - virtual void childEvent(QChildEvent *arg1) - { - if (cb_childEvent_1701_0.can_issue()) { - cb_childEvent_1701_0.issue(&QTcpServer_Adaptor::cbs_childEvent_1701_0, arg1); - } else { - QTcpServer::childEvent(arg1); - } - } - - // [adaptor impl] void QTcpServer::customEvent(QEvent *) - void cbs_customEvent_1217_0(QEvent *arg1) - { - QTcpServer::customEvent(arg1); - } - - virtual void customEvent(QEvent *arg1) - { - if (cb_customEvent_1217_0.can_issue()) { - cb_customEvent_1217_0.issue(&QTcpServer_Adaptor::cbs_customEvent_1217_0, arg1); - } else { - QTcpServer::customEvent(arg1); - } - } - - // [adaptor impl] void QTcpServer::disconnectNotify(const QMetaMethod &signal) - void cbs_disconnectNotify_2394_0(const QMetaMethod &signal) - { - QTcpServer::disconnectNotify(signal); - } - - virtual void disconnectNotify(const QMetaMethod &signal) - { - if (cb_disconnectNotify_2394_0.can_issue()) { - cb_disconnectNotify_2394_0.issue(&QTcpServer_Adaptor::cbs_disconnectNotify_2394_0, signal); - } else { - QTcpServer::disconnectNotify(signal); - } - } - - // [adaptor impl] void QTcpServer::incomingConnection(QIntegerForSizeof::Signed handle) - void cbs_incomingConnection_3470_0(QIntegerForSizeof::Signed handle) - { - QTcpServer::incomingConnection(handle); - } - - virtual void incomingConnection(QIntegerForSizeof::Signed handle) - { - if (cb_incomingConnection_3470_0.can_issue()) { - cb_incomingConnection_3470_0.issue::Signed>(&QTcpServer_Adaptor::cbs_incomingConnection_3470_0, handle); - } else { - QTcpServer::incomingConnection(handle); - } - } - - // [adaptor impl] void QTcpServer::timerEvent(QTimerEvent *) - void cbs_timerEvent_1730_0(QTimerEvent *arg1) - { - QTcpServer::timerEvent(arg1); - } - - virtual void timerEvent(QTimerEvent *arg1) - { - if (cb_timerEvent_1730_0.can_issue()) { - cb_timerEvent_1730_0.issue(&QTcpServer_Adaptor::cbs_timerEvent_1730_0, arg1); - } else { - QTcpServer::timerEvent(arg1); - } - } - - gsi::Callback cb_event_1217_0; - gsi::Callback cb_eventFilter_2411_0; - gsi::Callback cb_hasPendingConnections_c0_0; - gsi::Callback cb_nextPendingConnection_0_0; - gsi::Callback cb_childEvent_1701_0; - gsi::Callback cb_customEvent_1217_0; - gsi::Callback cb_disconnectNotify_2394_0; - gsi::Callback cb_incomingConnection_3470_0; - gsi::Callback cb_timerEvent_1730_0; -}; - -QTcpServer_Adaptor::~QTcpServer_Adaptor() { } - -// Constructor QTcpServer::QTcpServer(QObject *parent) (adaptor class) - -static void _init_ctor_QTcpServer_Adaptor_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QTcpServer_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QTcpServer_Adaptor (arg1)); -} - - -// emitter void QTcpServer::acceptError(QAbstractSocket::SocketError socketError) - -static void _init_emitter_acceptError_3209 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socketError"); - decl->add_arg::target_type & > (argspec_0); - decl->set_return (); -} - -static void _call_emitter_acceptError_3209 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - ((QTcpServer_Adaptor *)cls)->emitter_QTcpServer_acceptError_3209 (arg1); -} - - -// exposed void QTcpServer::addPendingConnection(QTcpSocket *socket) - -static void _init_fp_addPendingConnection_1615 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("socket"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_addPendingConnection_1615 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTcpSocket *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer_Adaptor *)cls)->fp_QTcpServer_addPendingConnection_1615 (arg1); -} - - -// void QTcpServer::childEvent(QChildEvent *) - -static void _init_cbs_childEvent_1701_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_childEvent_1701_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QChildEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer_Adaptor *)cls)->cbs_childEvent_1701_0 (arg1); -} - -static void _set_callback_cbs_childEvent_1701_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_childEvent_1701_0 = cb; -} - - -// void QTcpServer::customEvent(QEvent *) - -static void _init_cbs_customEvent_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_customEvent_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer_Adaptor *)cls)->cbs_customEvent_1217_0 (arg1); -} - -static void _set_callback_cbs_customEvent_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_customEvent_1217_0 = cb; -} - - -// emitter void QTcpServer::destroyed(QObject *) - -static void _init_emitter_destroyed_1302 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1", true, "0"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ((QTcpServer_Adaptor *)cls)->emitter_QTcpServer_destroyed_1302 (arg1); -} - - -// void QTcpServer::disconnectNotify(const QMetaMethod &signal) - -static void _init_cbs_disconnectNotify_2394_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_disconnectNotify_2394_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer_Adaptor *)cls)->cbs_disconnectNotify_2394_0 (arg1); -} - -static void _set_callback_cbs_disconnectNotify_2394_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_disconnectNotify_2394_0 = cb; -} - - -// bool QTcpServer::event(QEvent *) - -static void _init_cbs_event_1217_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_event_1217_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QEvent *arg1 = args.read (heap); - ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_event_1217_0 (arg1)); -} - -static void _set_callback_cbs_event_1217_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_event_1217_0 = cb; -} - - -// bool QTcpServer::eventFilter(QObject *, QEvent *) - -static void _init_cbs_eventFilter_2411_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("arg2"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_cbs_eventFilter_2411_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); - ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_eventFilter_2411_0 (arg1, arg2)); -} - -static void _set_callback_cbs_eventFilter_2411_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_eventFilter_2411_0 = cb; -} - - -// bool QTcpServer::hasPendingConnections() - -static void _init_cbs_hasPendingConnections_c0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_hasPendingConnections_c0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((bool)((QTcpServer_Adaptor *)cls)->cbs_hasPendingConnections_c0_0 ()); -} - -static void _set_callback_cbs_hasPendingConnections_c0_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_hasPendingConnections_c0_0 = cb; -} - - -// void QTcpServer::incomingConnection(QIntegerForSizeof::Signed handle) - -static void _init_cbs_incomingConnection_3470_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("handle"); - decl->add_arg::Signed > (argspec_0); - decl->set_return (); -} - -static void _call_cbs_incomingConnection_3470_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer_Adaptor *)cls)->cbs_incomingConnection_3470_0 (arg1); -} - -static void _set_callback_cbs_incomingConnection_3470_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_incomingConnection_3470_0 = cb; -} - - -// exposed bool QTcpServer::isSignalConnected(const QMetaMethod &signal) - -static void _init_fp_isSignalConnected_c2394 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - ret.write ((bool)((QTcpServer_Adaptor *)cls)->fp_QTcpServer_isSignalConnected_c2394 (arg1)); -} - - -// emitter void QTcpServer::newConnection() - -static void _init_emitter_newConnection_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_emitter_newConnection_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs & /*ret*/) -{ - __SUPPRESS_UNUSED_WARNING(args); - ((QTcpServer_Adaptor *)cls)->emitter_QTcpServer_newConnection_0 (); -} - - -// QTcpSocket *QTcpServer::nextPendingConnection() - -static void _init_cbs_nextPendingConnection_0_0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_cbs_nextPendingConnection_0_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QTcpSocket *)((QTcpServer_Adaptor *)cls)->cbs_nextPendingConnection_0_0 ()); -} - -static void _set_callback_cbs_nextPendingConnection_0_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_nextPendingConnection_0_0 = cb; -} - - -// exposed int QTcpServer::receivers(const char *signal) - -static void _init_fp_receivers_c1731 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("signal"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_fp_receivers_c1731 (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 (heap); - ret.write ((int)((QTcpServer_Adaptor *)cls)->fp_QTcpServer_receivers_c1731 (arg1)); -} - - -// exposed QObject *QTcpServer::sender() - -static void _init_fp_sender_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_sender_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QObject *)((QTcpServer_Adaptor *)cls)->fp_QTcpServer_sender_c0 ()); -} - - -// exposed int QTcpServer::senderSignalIndex() - -static void _init_fp_senderSignalIndex_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_fp_senderSignalIndex_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((int)((QTcpServer_Adaptor *)cls)->fp_QTcpServer_senderSignalIndex_c0 ()); -} - - -// void QTcpServer::timerEvent(QTimerEvent *) - -static void _init_cbs_timerEvent_1730_0 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("arg1"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_cbs_timerEvent_1730_0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QTimerEvent *arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QTcpServer_Adaptor *)cls)->cbs_timerEvent_1730_0 (arg1); -} - -static void _set_callback_cbs_timerEvent_1730_0 (void *cls, const gsi::Callback &cb) -{ - ((QTcpServer_Adaptor *)cls)->cb_timerEvent_1730_0 = cb; -} - - -namespace gsi -{ - -gsi::Class &qtdecl_QTcpServer (); - -static gsi::Methods methods_QTcpServer_Adaptor () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTcpServer::QTcpServer(QObject *parent)\nThis method creates an object of class QTcpServer.", &_init_ctor_QTcpServer_Adaptor_1302, &_call_ctor_QTcpServer_Adaptor_1302); - methods += new qt_gsi::GenericMethod ("emit_acceptError", "@brief Emitter for signal void QTcpServer::acceptError(QAbstractSocket::SocketError socketError)\nCall this method to emit this signal.", false, &_init_emitter_acceptError_3209, &_call_emitter_acceptError_3209); - methods += new qt_gsi::GenericMethod ("*addPendingConnection", "@brief Method void QTcpServer::addPendingConnection(QTcpSocket *socket)\nThis method is protected and can only be called from inside a derived class.", false, &_init_fp_addPendingConnection_1615, &_call_fp_addPendingConnection_1615); - methods += new qt_gsi::GenericMethod ("*childEvent", "@hide", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*childEvent", "@brief Virtual method void QTcpServer::childEvent(QChildEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_childEvent_1701_0, &_call_cbs_childEvent_1701_0, &_set_callback_cbs_childEvent_1701_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@hide", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("*customEvent", "@brief Virtual method void QTcpServer::customEvent(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_customEvent_1217_0, &_call_cbs_customEvent_1217_0, &_set_callback_cbs_customEvent_1217_0); - methods += new qt_gsi::GenericMethod ("emit_destroyed", "@brief Emitter for signal void QTcpServer::destroyed(QObject *)\nCall this method to emit this signal.", false, &_init_emitter_destroyed_1302, &_call_emitter_destroyed_1302); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@hide", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("*disconnectNotify", "@brief Virtual method void QTcpServer::disconnectNotify(const QMetaMethod &signal)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_disconnectNotify_2394_0, &_call_cbs_disconnectNotify_2394_0, &_set_callback_cbs_disconnectNotify_2394_0); - methods += new qt_gsi::GenericMethod ("event", "@hide", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("event", "@brief Virtual method bool QTcpServer::event(QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_event_1217_0, &_call_cbs_event_1217_0, &_set_callback_cbs_event_1217_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@hide", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("eventFilter", "@brief Virtual method bool QTcpServer::eventFilter(QObject *, QEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_eventFilter_2411_0, &_call_cbs_eventFilter_2411_0, &_set_callback_cbs_eventFilter_2411_0); - methods += new qt_gsi::GenericMethod ("hasPendingConnections", "@hide", true, &_init_cbs_hasPendingConnections_c0_0, &_call_cbs_hasPendingConnections_c0_0); - methods += new qt_gsi::GenericMethod ("hasPendingConnections", "@brief Virtual method bool QTcpServer::hasPendingConnections()\nThis method can be reimplemented in a derived class.", true, &_init_cbs_hasPendingConnections_c0_0, &_call_cbs_hasPendingConnections_c0_0, &_set_callback_cbs_hasPendingConnections_c0_0); - methods += new qt_gsi::GenericMethod ("*incomingConnection", "@hide", false, &_init_cbs_incomingConnection_3470_0, &_call_cbs_incomingConnection_3470_0); - methods += new qt_gsi::GenericMethod ("*incomingConnection", "@brief Virtual method void QTcpServer::incomingConnection(QIntegerForSizeof::Signed handle)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_incomingConnection_3470_0, &_call_cbs_incomingConnection_3470_0, &_set_callback_cbs_incomingConnection_3470_0); - methods += new qt_gsi::GenericMethod ("*isSignalConnected", "@brief Method bool QTcpServer::isSignalConnected(const QMetaMethod &signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_isSignalConnected_c2394, &_call_fp_isSignalConnected_c2394); - methods += new qt_gsi::GenericMethod ("emit_newConnection", "@brief Emitter for signal void QTcpServer::newConnection()\nCall this method to emit this signal.", false, &_init_emitter_newConnection_0, &_call_emitter_newConnection_0); - methods += new qt_gsi::GenericMethod ("nextPendingConnection", "@hide", false, &_init_cbs_nextPendingConnection_0_0, &_call_cbs_nextPendingConnection_0_0); - methods += new qt_gsi::GenericMethod ("nextPendingConnection", "@brief Virtual method QTcpSocket *QTcpServer::nextPendingConnection()\nThis method can be reimplemented in a derived class.", false, &_init_cbs_nextPendingConnection_0_0, &_call_cbs_nextPendingConnection_0_0, &_set_callback_cbs_nextPendingConnection_0_0); - methods += new qt_gsi::GenericMethod ("*receivers", "@brief Method int QTcpServer::receivers(const char *signal)\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_receivers_c1731, &_call_fp_receivers_c1731); - methods += new qt_gsi::GenericMethod ("*sender", "@brief Method QObject *QTcpServer::sender()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_sender_c0, &_call_fp_sender_c0); - methods += new qt_gsi::GenericMethod ("*senderSignalIndex", "@brief Method int QTcpServer::senderSignalIndex()\nThis method is protected and can only be called from inside a derived class.", true, &_init_fp_senderSignalIndex_c0, &_call_fp_senderSignalIndex_c0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@hide", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0); - methods += new qt_gsi::GenericMethod ("*timerEvent", "@brief Virtual method void QTcpServer::timerEvent(QTimerEvent *)\nThis method can be reimplemented in a derived class.", false, &_init_cbs_timerEvent_1730_0, &_call_cbs_timerEvent_1730_0, &_set_callback_cbs_timerEvent_1730_0); - return methods; -} - -gsi::Class decl_QTcpServer_Adaptor (qtdecl_QTcpServer (), "QtMultimedia", "QTcpServer", - methods_QTcpServer_Adaptor (), - "@qt\n@brief Binding of QTcpServer"); - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQTcpSocket.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQTcpSocket.cc deleted file mode 100644 index 7b8a36479..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQTcpSocket.cc +++ /dev/null @@ -1,162 +0,0 @@ - -/* - - 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 gsiDeclQTcpSocket.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QTcpSocket - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (QTcpSocket::staticMetaObject); -} - - -// Constructor QTcpSocket::QTcpSocket(QObject *parent) - - -static void _init_ctor_QTcpSocket_1302 (qt_gsi::GenericStaticMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("parent", true, "0"); - decl->add_arg (argspec_0); - decl->set_return_new (); -} - -static void _call_ctor_QTcpSocket_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - ret.write (new QTcpSocket (arg1)); -} - - -// static QString QTcpSocket::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QTcpSocket::tr (arg1, arg2, arg3)); -} - - -// static QString QTcpSocket::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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QTcpSocket::trUtf8 (arg1, arg2, arg3)); -} - - - -namespace gsi -{ - -static gsi::Methods methods_QTcpSocket () { - gsi::Methods methods; - methods += new qt_gsi::GenericStaticMethod ("new", "@brief Constructor QTcpSocket::QTcpSocket(QObject *parent)\nThis method creates an object of class QTcpSocket.", &_init_ctor_QTcpSocket_1302, &_call_ctor_QTcpSocket_1302); - methods += new qt_gsi::GenericStaticMethod ("staticMetaObject", "@brief Obtains the static MetaObject for this class.", &_init_smo, &_call_smo); - methods += gsi::qt_signal ("aboutToClose()", "aboutToClose", "@brief Signal declaration for QTcpSocket::aboutToClose()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("bytesWritten(qint64)", "bytesWritten", gsi::arg("bytes"), "@brief Signal declaration for QTcpSocket::bytesWritten(qint64 bytes)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("connected()", "connected", "@brief Signal declaration for QTcpSocket::connected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("destroyed(QObject *)", "destroyed", gsi::arg("arg1"), "@brief Signal declaration for QTcpSocket::destroyed(QObject *)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("disconnected()", "disconnected", "@brief Signal declaration for QTcpSocket::disconnected()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("error(QAbstractSocket::SocketError)", "error_sig", gsi::arg("arg1"), "@brief Signal declaration for QTcpSocket::error(QAbstractSocket::SocketError)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("hostFound()", "hostFound", "@brief Signal declaration for QTcpSocket::hostFound()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("proxyAuthenticationRequired(const QNetworkProxy &, QAuthenticator *)", "proxyAuthenticationRequired", gsi::arg("proxy"), gsi::arg("authenticator"), "@brief Signal declaration for QTcpSocket::proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator)\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readChannelFinished()", "readChannelFinished", "@brief Signal declaration for QTcpSocket::readChannelFinished()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal ("readyRead()", "readyRead", "@brief Signal declaration for QTcpSocket::readyRead()\nYou can bind a procedure to this signal."); - methods += gsi::qt_signal::target_type & > ("stateChanged(QAbstractSocket::SocketState)", "stateChanged", gsi::arg("arg1"), "@brief Signal declaration for QTcpSocket::stateChanged(QAbstractSocket::SocketState)\nYou can bind a procedure to this signal."); - methods += new qt_gsi::GenericStaticMethod ("tr", "@brief Static method QString QTcpSocket::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 QTcpSocket::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 &qtdecl_QAbstractSocket (); - -qt_gsi::QtNativeClass decl_QTcpSocket (qtdecl_QAbstractSocket (), "QtMultimedia", "QTcpSocket", - methods_QTcpSocket (), - "@qt\n@brief Binding of QTcpSocket"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QTcpSocket () { return decl_QTcpSocket; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQUdpSocket.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQUdpSocket.cc deleted file mode 100644 index 32977ee77..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQUdpSocket.cc +++ /dev/null @@ -1,373 +0,0 @@ - -/* - - 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 gsiDeclQUdpSocket.cc -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include "gsiQt.h" -#include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" -#include - -// ----------------------------------------------------------------------- -// class QUdpSocket - -// get static meta object - -static void _init_smo (qt_gsi::GenericStaticMethod *decl) -{ - decl->set_return (); -} - -static void _call_smo (const qt_gsi::GenericStaticMethod *, gsi::SerialArgs &, gsi::SerialArgs &ret) -{ - ret.write (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 (argspec_0); - decl->set_return_new (); -} - -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 (heap) : (QObject *)(0); - ret.write (new QUdpSocket (arg1)); -} - - -// bool QUdpSocket::hasPendingDatagrams() - - -static void _init_f_hasPendingDatagrams_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -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)((QUdpSocket *)cls)->hasPendingDatagrams ()); -} - - -// bool QUdpSocket::joinMulticastGroup(const QHostAddress &groupAddress) - - -static void _init_f_joinMulticastGroup_2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("groupAddress"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_joinMulticastGroup_2518 (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 (heap); - ret.write ((bool)((QUdpSocket *)cls)->joinMulticastGroup (arg1)); -} - - -// bool QUdpSocket::joinMulticastGroup(const QHostAddress &groupAddress, const QNetworkInterface &iface) - - -static void _init_f_joinMulticastGroup_5463 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("groupAddress"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("iface"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_joinMulticastGroup_5463 (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 (heap); - const QNetworkInterface &arg2 = args.read (heap); - ret.write ((bool)((QUdpSocket *)cls)->joinMulticastGroup (arg1, arg2)); -} - - -// bool QUdpSocket::leaveMulticastGroup(const QHostAddress &groupAddress) - - -static void _init_f_leaveMulticastGroup_2518 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("groupAddress"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_leaveMulticastGroup_2518 (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 (heap); - ret.write ((bool)((QUdpSocket *)cls)->leaveMulticastGroup (arg1)); -} - - -// bool QUdpSocket::leaveMulticastGroup(const QHostAddress &groupAddress, const QNetworkInterface &iface) - - -static void _init_f_leaveMulticastGroup_5463 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("groupAddress"); - decl->add_arg (argspec_0); - static gsi::ArgSpecBase argspec_1 ("iface"); - decl->add_arg (argspec_1); - decl->set_return (); -} - -static void _call_f_leaveMulticastGroup_5463 (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 (heap); - const QNetworkInterface &arg2 = args.read (heap); - ret.write ((bool)((QUdpSocket *)cls)->leaveMulticastGroup (arg1, arg2)); -} - - -// QNetworkInterface QUdpSocket::multicastInterface() - - -static void _init_f_multicastInterface_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -static void _call_f_multicastInterface_c0 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - ret.write ((QNetworkInterface)((QUdpSocket *)cls)->multicastInterface ()); -} - - -// qint64 QUdpSocket::pendingDatagramSize() - - -static void _init_f_pendingDatagramSize_c0 (qt_gsi::GenericMethod *decl) -{ - decl->set_return (); -} - -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)((QUdpSocket *)cls)->pendingDatagramSize ()); -} - - -// void QUdpSocket::setMulticastInterface(const QNetworkInterface &iface) - - -static void _init_f_setMulticastInterface_3053 (qt_gsi::GenericMethod *decl) -{ - static gsi::ArgSpecBase argspec_0 ("iface"); - decl->add_arg (argspec_0); - decl->set_return (); -} - -static void _call_f_setMulticastInterface_3053 (const qt_gsi::GenericMethod * /*decl*/, void *cls, gsi::SerialArgs &args, gsi::SerialArgs &ret) -{ - __SUPPRESS_UNUSED_WARNING(args); - tl::Heap heap; - const QNetworkInterface &arg1 = args.read (heap); - __SUPPRESS_UNUSED_WARNING(ret); - ((QUdpSocket *)cls)->setMulticastInterface (arg1); -} - - -// 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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("len"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("host"); - decl->add_arg (argspec_2); - static gsi::ArgSpecBase argspec_3 ("port"); - decl->add_arg (argspec_3); - decl->set_return (); -} - -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 (heap); - qint64 arg2 = args.read (heap); - const QHostAddress &arg3 = args.read (heap); - quint16 arg4 = args.read (heap); - ret.write ((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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("host"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("port"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const QHostAddress &arg2 = args.read (heap); - quint16 arg3 = args.read (heap); - ret.write ((qint64)((QUdpSocket *)cls)->writeDatagram (arg1, arg2, arg3)); -} - - -// 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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((QString)QUdpSocket::tr (arg1, arg2, arg3)); -} - - -// 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 (argspec_0); - static gsi::ArgSpecBase argspec_1 ("c", true, "__null"); - decl->add_arg (argspec_1); - static gsi::ArgSpecBase argspec_2 ("n", true, "-1"); - decl->add_arg (argspec_2); - decl->set_return (); -} - -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 (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); - ret.write ((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 ("hasPendingDatagrams", "@brief Method bool QUdpSocket::hasPendingDatagrams()\n", true, &_init_f_hasPendingDatagrams_c0, &_call_f_hasPendingDatagrams_c0); - methods += new qt_gsi::GenericMethod ("joinMulticastGroup", "@brief Method bool QUdpSocket::joinMulticastGroup(const QHostAddress &groupAddress)\n", false, &_init_f_joinMulticastGroup_2518, &_call_f_joinMulticastGroup_2518); - methods += new qt_gsi::GenericMethod ("joinMulticastGroup", "@brief Method bool QUdpSocket::joinMulticastGroup(const QHostAddress &groupAddress, const QNetworkInterface &iface)\n", false, &_init_f_joinMulticastGroup_5463, &_call_f_joinMulticastGroup_5463); - methods += new qt_gsi::GenericMethod ("leaveMulticastGroup", "@brief Method bool QUdpSocket::leaveMulticastGroup(const QHostAddress &groupAddress)\n", false, &_init_f_leaveMulticastGroup_2518, &_call_f_leaveMulticastGroup_2518); - methods += new qt_gsi::GenericMethod ("leaveMulticastGroup", "@brief Method bool QUdpSocket::leaveMulticastGroup(const QHostAddress &groupAddress, const QNetworkInterface &iface)\n", false, &_init_f_leaveMulticastGroup_5463, &_call_f_leaveMulticastGroup_5463); - methods += new qt_gsi::GenericMethod (":multicastInterface", "@brief Method QNetworkInterface QUdpSocket::multicastInterface()\n", true, &_init_f_multicastInterface_c0, &_call_f_multicastInterface_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 ("setMulticastInterface|multicastInterface=", "@brief Method void QUdpSocket::setMulticastInterface(const QNetworkInterface &iface)\n", false, &_init_f_setMulticastInterface_3053, &_call_f_setMulticastInterface_3053); - 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 ("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 ("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::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 ("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::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, 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, 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 &qtdecl_QAbstractSocket (); - -qt_gsi::QtNativeClass decl_QUdpSocket (qtdecl_QAbstractSocket (), "QtMultimedia", "QUdpSocket", - methods_QUdpSocket (), - "@qt\n@brief Binding of QUdpSocket"); - - -GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QUdpSocket () { return decl_QUdpSocket; } - -} - diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc index e5694054c..3a0a9edfe 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettings.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettings.cc index 215535049..c8d91eb54 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettings.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettings.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc index 6709d2eb9..45053b840 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc index 3c24c2371..356ca7a65 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFrame.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFrame.cc index 9e3814f01..571ad8ad2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFrame.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFrame.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc index 53db1ab6d..6b546632f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc index ee0273e4e..a215420a9 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoSurfaceFormat.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoSurfaceFormat.cc index 9d0658ea9..b07be8a8d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoSurfaceFormat.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoSurfaceFormat.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc index a160a00c3..8a175122b 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc index c38771f2e..e86ea6918 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtMultimediaCommon.h" -#include "gsiDeclQtMultimediaTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQtMultimediaTypeTraits.h b/src/gsiqt/qt5/QtMultimedia/gsiDeclQtMultimediaTypeTraits.h deleted file mode 100644 index 173c75ae1..000000000 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQtMultimediaTypeTraits.h +++ /dev/null @@ -1,5247 +0,0 @@ - -/* - - 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 generated/gsiDeclQtMultimediaTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtMultimediaTypeTraits -#define _HDR_gsiDeclQtMultimediaTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractAudioDeviceInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAudioDeviceInfo_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractAudioInput; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAudioInput_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractAudioOutput; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAudioOutput_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractGraphicsShapeItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractGraphicsShapeItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNetworkCache; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNetworkCache_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTextDocumentLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTextDocumentLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractUndoItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractUndoItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAbstractVideoBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractVideoFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractVideoFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractVideoSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractVideoSurface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAccessible; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessible_ActivationObserver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleActionInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleActionInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEditableTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleEditableTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableModelChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableModelChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTextRemoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextRemoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QActionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QApplicationStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAudio_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAudioBuffer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAudioDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioDecoder_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioDecoderControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAudioDecoderControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioDeviceInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAudioEncoderSettings; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAudioEncoderSettingsControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAudioEncoderSettingsControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAudioInput; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioInput_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioInputSelectorControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAudioInputSelectorControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioOutput; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioOutput_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioOutputSelectorControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAudioOutputSelectorControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioProbe; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioProbe_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioRecorder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAudioRecorder_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QAudioSystemFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAudioSystemFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAudioSystemPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAudioSystemPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAuthenticator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBackingStore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBrush; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCamera; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCamera_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCameraCaptureBufferFormatControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraCaptureBufferFormatControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraCaptureDestinationControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraCaptureDestinationControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraExposure; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QCameraExposureControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraExposureControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraFeedbackControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraFeedbackControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraFlashControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraFlashControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraFocus; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QCameraFocusControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraFocusControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraFocusZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCameraImageCapture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraImageCapture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraImageCaptureControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraImageCaptureControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraImageProcessing; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QCameraImageProcessingControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraImageProcessingControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCameraInfoControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraInfoControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraLocksControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraLocksControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraViewfinderSettings; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCameraViewfinderSettingsControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraViewfinderSettingsControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraViewfinderSettingsControl2; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraViewfinderSettingsControl2_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCameraZoomControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCameraZoomControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QClipboard; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QCloseEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCloseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QColor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QConicalGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QContextMenuEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QContextMenuEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDesktopServices; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDnsDomainNameRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsHostAddressRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsLookup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDnsLookup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDnsMailExchangeRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsServiceRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsTextRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDoubleValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDoubleValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragLeaveEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragLeaveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QExposeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QExposeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileOpenEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileOpenEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFocusEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFocusEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontDatabase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetrics; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetricsF; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QGenericPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGenericPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGenericPluginFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGlyphRun; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGraphicsEllipseItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEllipseItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLineItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLineItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPathItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPathItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPixmapItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPixmapItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPolygonItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPolygonItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRectItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRectItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSimpleTextItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSimpleTextItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTextItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTextItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsVideoItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsVideoItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGuiApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGuiApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHideEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHideEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHostAddress; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHostInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHoverEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHoverEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHttpMultiPart; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHttpMultiPart_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHttpPart; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIPv6Address; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIcon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEnginePlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEnginePlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImage; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImageEncoderControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageEncoderControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageEncoderSettings; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImageIOHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageIOPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethod; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QInputMethodEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIntValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIntValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeySequence; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLinearGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocalServer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocalServer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocalSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix4x4; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaAudioProbeControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaAudioProbeControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaAvailabilityControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaAvailabilityControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaBindableInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaBindableInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaContainerControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaContainerControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaContent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaGaplessPlaybackControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaGaplessPlaybackControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaMetaData_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaNetworkAccessControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaNetworkAccessControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaPlayer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaPlayer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaPlayerControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaPlayerControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaPlaylist; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaPlaylist_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaRecorder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaRecorder_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaRecorderControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaRecorderControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaResource; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaService; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaService_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QMediaServiceCameraInfoInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaServiceCameraInfoInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMediaServiceDefaultDeviceInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaServiceDefaultDeviceInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMediaServiceFeaturesInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaServiceFeaturesInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMediaServiceProviderFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaServiceProviderFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaServiceProviderHint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaServiceProviderPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaServiceProviderPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMediaServiceSupportedDevicesInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaServiceSupportedDevicesInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMediaServiceSupportedFormatsInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaServiceSupportedFormatsInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaStreamsControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaStreamsControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMediaTimeInterval; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaTimeRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMediaVideoProbeControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMediaVideoProbeControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaDataReaderControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMetaDataReaderControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaDataWriterControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMetaDataWriterControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMouseEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMouseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMovie; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMovie_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMultimedia_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNativeGestureEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkAccessManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkAccessManager_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkAddressEntry; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkCacheMetaData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkConfiguration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkConfigurationManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkConfigurationManager_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkCookie; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkCookieJar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkCookieJar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkDiskCache; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkDiskCache_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkInterface; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxy; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxyFactory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkProxyFactory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxyQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkReply; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkRequest; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkSession; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkSession_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPageLayout; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPageSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPagedPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPagedPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintDeviceWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDeviceWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintEngineState; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPainter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPath; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPathStroker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPalette; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPdfWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPdfWriter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPen; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPictureFormatPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPictureFormatPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPixmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmapCache; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPlatformSurfaceEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlatformSurfaceEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygonF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QQuaternion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadialGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadioData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRadioData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRadioDataControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRadioDataControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRadioTuner; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRadioTuner_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRadioTunerControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRadioTunerControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRasterWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRasterWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRawFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExpValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegExpValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRegularExpressionValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QResizeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResizeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScreen; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreen_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSessionManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QShortcutEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcutEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShowEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QShowEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizePolicy; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSound; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSound_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSoundEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSoundEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSsl_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSslCertificate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslCertificateExtension; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslCipher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslConfiguration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslEllipticCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslKey; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslPreSharedKeyAuthenticator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStaticText; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStatusTipEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStatusTipEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHints; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyleHints_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSurfaceFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSyntaxHighlighter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSyntaxHighlighter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTabletEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTabletEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTcpServer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTcpServer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTcpSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBlock; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextBlockGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextBlockUserData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockUserData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCharFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextDocument; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocument_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocumentFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDocumentWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrameFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextImageFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextInlineObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLength; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextList; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextList_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextListFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextOption; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextTable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTableCell; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableCellFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBarChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBarChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchDevice; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTouchEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTransform; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUdpSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVector2D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector3D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector4D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVideoDeviceSelectorControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QVideoDeviceSelectorControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVideoEncoderSettings; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVideoEncoderSettingsControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QVideoEncoderSettingsControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVideoFilterRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QVideoFilterRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVideoFrame; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVideoProbe; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVideoProbe_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVideoRendererControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QVideoRendererControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVideoSurfaceFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVideoWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVideoWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVideoWindowControl; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QVideoWindowControl_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWhatsThisClickedEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWhatsThisClickedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindowStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindowStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtMultimedia/gsiQtExternals.h b/src/gsiqt/qt5/QtMultimedia/gsiQtExternals.h index 9f2f28aac..4566fcf2a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtMultimedia/gsiQtExternals.h @@ -35,788 +35,370 @@ class QAbstractAudioDeviceInfo; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAbstractAudioDeviceInfo (); } class QAbstractAudioInput; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAbstractAudioInput (); } class QAbstractAudioOutput; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAbstractAudioOutput (); } class QAbstractVideoBuffer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAbstractVideoBuffer (); } class QAbstractVideoFilter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAbstractVideoFilter (); } class QAbstractVideoSurface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAbstractVideoSurface (); } class QAudioBuffer; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioBuffer (); } class QAudioDecoder; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioDecoder (); } class QAudioDecoderControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioDecoderControl (); } class QAudioDeviceInfo; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioDeviceInfo (); } class QAudioEncoderSettings; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioEncoderSettings (); } class QAudioEncoderSettingsControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioEncoderSettingsControl (); } class QAudioFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioFormat (); } class QAudioInput; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioInput (); } class QAudioInputSelectorControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioInputSelectorControl (); } class QAudioOutput; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioOutput (); } class QAudioOutputSelectorControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioOutputSelectorControl (); } class QAudioProbe; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioProbe (); } class QAudioRecorder; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioRecorder (); } struct QAudioSystemFactoryInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioSystemFactoryInterface (); } class QAudioSystemPlugin; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QAudioSystemPlugin (); } class QCamera; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCamera (); } class QCameraCaptureBufferFormatControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraCaptureBufferFormatControl (); } class QCameraCaptureDestinationControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraCaptureDestinationControl (); } class QCameraControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraControl (); } class QCameraExposure; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraExposure (); } class QCameraExposureControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraExposureControl (); } class QCameraFeedbackControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraFeedbackControl (); } class QCameraFlashControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraFlashControl (); } class QCameraFocus; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraFocus (); } class QCameraFocusControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraFocusControl (); } class QCameraFocusZone; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraFocusZone (); } class QCameraImageCapture; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraImageCapture (); } class QCameraImageCaptureControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraImageCaptureControl (); } class QCameraImageProcessing; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraImageProcessing (); } class QCameraImageProcessingControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraImageProcessingControl (); } class QCameraInfo; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraInfo (); } class QCameraInfoControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraInfoControl (); } class QCameraLocksControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraLocksControl (); } class QCameraViewfinderSettings; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraViewfinderSettings (); } class QCameraViewfinderSettingsControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraViewfinderSettingsControl (); } class QCameraViewfinderSettingsControl2; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraViewfinderSettingsControl2 (); } class QCameraZoomControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QCameraZoomControl (); } class QGraphicsVideoItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QGraphicsVideoItem (); } class QImageEncoderControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QImageEncoderControl (); } class QImageEncoderSettings; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QImageEncoderSettings (); } class QMediaAudioProbeControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaAudioProbeControl (); } class QMediaAvailabilityControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaAvailabilityControl (); } class QMediaBindableInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaBindableInterface (); } class QMediaContainerControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaContainerControl (); } class QMediaContent; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaContent (); } class QMediaControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaControl (); } class QMediaGaplessPlaybackControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaGaplessPlaybackControl (); } class QMediaNetworkAccessControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaNetworkAccessControl (); } class QMediaObject; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaObject (); } class QMediaPlayer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaPlayer (); } class QMediaPlayerControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaPlayerControl (); } class QMediaPlaylist; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaPlaylist (); } class QMediaRecorder; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaRecorder (); } class QMediaRecorderControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaRecorderControl (); } class QMediaResource; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaResource (); } class QMediaService; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaService (); } struct QMediaServiceCameraInfoInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaServiceCameraInfoInterface (); } struct QMediaServiceDefaultDeviceInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaServiceDefaultDeviceInterface (); } struct QMediaServiceFeaturesInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaServiceFeaturesInterface (); } struct QMediaServiceProviderFactoryInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaServiceProviderFactoryInterface (); } class QMediaServiceProviderHint; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaServiceProviderHint (); } class QMediaServiceProviderPlugin; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaServiceProviderPlugin (); } struct QMediaServiceSupportedDevicesInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaServiceSupportedDevicesInterface (); } struct QMediaServiceSupportedFormatsInterface; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaServiceSupportedFormatsInterface (); } class QMediaStreamsControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaStreamsControl (); } class QMediaTimeInterval; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaTimeInterval (); } class QMediaTimeRange; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaTimeRange (); } class QMediaVideoProbeControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMediaVideoProbeControl (); } class QMetaDataReaderControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMetaDataReaderControl (); } class QMetaDataWriterControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QMetaDataWriterControl (); } class QRadioData; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QRadioData (); } class QRadioDataControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QRadioDataControl (); } class QRadioTuner; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QRadioTuner (); } class QRadioTunerControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QRadioTunerControl (); } class QSound; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSound (); } class QSoundEffect; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QSoundEffect (); } class QVideoDeviceSelectorControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoDeviceSelectorControl (); } class QVideoEncoderSettings; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoEncoderSettings (); } class QVideoEncoderSettingsControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoEncoderSettingsControl (); } class QVideoFilterRunnable; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoFilterRunnable (); } class QVideoFrame; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoFrame (); } class QVideoProbe; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoProbe (); } class QVideoRendererControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoRendererControl (); } class QVideoSurfaceFormat; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoSurfaceFormat (); } class QVideoWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoWidget (); } class QVideoWindowControl; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTMULTIMEDIA_PUBLIC gsi::Class &qtdecl_QVideoWindowControl (); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc index 7e044fd37..6c9d3bc0c 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc index 695236cb6..61a7b1729 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQAuthenticator.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQAuthenticator.cc index 4f12db1fc..7463067ec 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQAuthenticator.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQAuthenticator.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsDomainNameRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsDomainNameRecord.cc index 59089dbdb..564a70bc8 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsDomainNameRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsDomainNameRecord.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsHostAddressRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsHostAddressRecord.cc index b61706ddb..d096f0d40 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsHostAddressRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsHostAddressRecord.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc index 7430ce7f5..59fd59eef 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsMailExchangeRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsMailExchangeRecord.cc index 964f232c6..b5c9b81ae 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsMailExchangeRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsMailExchangeRecord.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsServiceRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsServiceRecord.cc index d845b37b3..8ebb37ef2 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsServiceRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsServiceRecord.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsTextRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsTextRecord.cc index f195ba107..2fdeb9d88 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsTextRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsTextRecord.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHostAddress.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHostAddress.cc index add6ecda9..9a99da95c 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHostAddress.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHostAddress.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHostInfo.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHostInfo.cc index 98ac3170a..794c9f045 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHostInfo.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHostInfo.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc index c643fdde6..f8d749e13 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpPart.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpPart.cc index 3965d1b98..58d2f233e 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpPart.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpPart.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQIPv6Address.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQIPv6Address.cc index 58552360c..cb415494c 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQIPv6Address.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQIPv6Address.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc index 61e57d5db..033f0a160 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc index 2443d9b34..69241cca2 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc index abcb46796..279e3e52a 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc @@ -49,7 +49,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAddressEntry.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAddressEntry.cc index 305062c4c..1a7df594d 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAddressEntry.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAddressEntry.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCacheMetaData.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCacheMetaData.cc index c4d43cea3..c5ea7e53d 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCacheMetaData.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCacheMetaData.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfiguration.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfiguration.cc index 8514d817f..2f8ec9bf0 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfiguration.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfiguration.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc index 21863e6bc..5ed87e714 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookie.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookie.cc index 35841e051..5986ad476 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookie.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookie.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc index 1192639e1..953587bd4 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc index a056fab02..1834c3632 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkInterface.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkInterface.cc index de7970853..c4de8fe2c 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkInterface.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkInterface.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxy.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxy.cc index 576c967c9..9bba96248 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxy.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxy.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc index 59cc8be36..b5f8f619b 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyQuery.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyQuery.cc index 7bde4dcca..c0656cfce 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyQuery.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyQuery.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc index 585edd73a..941287888 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkRequest.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkRequest.cc index 4e690d83a..ea5e661e1 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkRequest.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkRequest.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc index 3a68608b9..7ddbb666e 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSsl.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSsl.cc index a494b7093..e24db3b14 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSsl.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSsl.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificate.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificate.cc index 894b07ce5..c2b5ed503 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificate.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificate.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificateExtension.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificateExtension.cc index fc40b7616..189af1d39 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificateExtension.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificateExtension.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCipher.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCipher.cc index 8fe2c7099..cdc54205c 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCipher.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCipher.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslConfiguration.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslConfiguration.cc index e0a360642..31f3317e5 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslConfiguration.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslConfiguration.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslEllipticCurve.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslEllipticCurve.cc index a5e7200ed..32b5656f9 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslEllipticCurve.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslEllipticCurve.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslError.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslError.cc index bafaef674..e614552c0 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslError.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslError.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslKey.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslKey.cc index d08f8b068..6d5e58d73 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslKey.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslKey.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslPreSharedKeyAuthenticator.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslPreSharedKeyAuthenticator.cc index 6aca47eba..677e26a51 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslPreSharedKeyAuthenticator.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslPreSharedKeyAuthenticator.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc index 1e33659c5..cac9d3b46 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc index 743ed26fe..4059585a2 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpSocket.cc index 35fac5117..95cb72c37 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpSocket.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQUdpSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQUdpSocket.cc index 88f6f7387..47c52d655 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQUdpSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQUdpSocket.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtNetworkCommon.h" -#include "gsiDeclQtNetworkTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQtNetworkTypeTraits.h b/src/gsiqt/qt5/QtNetwork/gsiDeclQtNetworkTypeTraits.h deleted file mode 100644 index 1d8c329d3..000000000 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQtNetworkTypeTraits.h +++ /dev/null @@ -1,1944 +0,0 @@ - -/* - - 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 generated/gsiDeclQtNetworkTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtNetworkTypeTraits -#define _HDR_gsiDeclQtNetworkTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNetworkCache; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNetworkCache_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAuthenticator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDnsDomainNameRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsHostAddressRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsLookup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDnsLookup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDnsMailExchangeRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsServiceRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsTextRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHostAddress; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHostInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHttpMultiPart; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHttpMultiPart_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHttpPart; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIPv6Address; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocalServer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocalServer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocalSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkAccessManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkAccessManager_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkAddressEntry; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkCacheMetaData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkConfiguration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkConfigurationManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkConfigurationManager_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkCookie; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkCookieJar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkCookieJar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkDiskCache; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkDiskCache_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkInterface; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxy; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxyFactory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkProxyFactory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxyQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkReply; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkRequest; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkSession; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkSession_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSsl_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSslCertificate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslCertificateExtension; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslCipher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslConfiguration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslEllipticCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslKey; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslPreSharedKeyAuthenticator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTcpServer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTcpServer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTcpSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUdpSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtNetwork/gsiQtExternals.h b/src/gsiqt/qt5/QtNetwork/gsiQtExternals.h index 6773e0260..1f4849bf1 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtNetwork/gsiQtExternals.h @@ -35,325 +35,174 @@ class QAbstractNetworkCache; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QAbstractNetworkCache (); } class QAbstractSocket; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QAbstractSocket (); } class QAuthenticator; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QAuthenticator (); } class QDnsDomainNameRecord; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QDnsDomainNameRecord (); } class QDnsHostAddressRecord; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QDnsHostAddressRecord (); } class QDnsLookup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QDnsLookup (); } class QDnsMailExchangeRecord; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QDnsMailExchangeRecord (); } class QDnsServiceRecord; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QDnsServiceRecord (); } class QDnsTextRecord; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QDnsTextRecord (); } class QHostAddress; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QHostAddress (); } class QHostInfo; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QHostInfo (); } class QHttpMultiPart; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QHttpMultiPart (); } class QHttpPart; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QHttpPart (); } class QIPv6Address; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QIPv6Address (); } class QLocalServer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QLocalServer (); } class QLocalSocket; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QLocalSocket (); } class QNetworkAccessManager; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkAccessManager (); } class QNetworkAddressEntry; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkAddressEntry (); } class QNetworkCacheMetaData; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkCacheMetaData (); } class QNetworkConfiguration; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkConfiguration (); } class QNetworkConfigurationManager; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkConfigurationManager (); } class QNetworkCookie; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkCookie (); } class QNetworkCookieJar; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkCookieJar (); } class QNetworkDiskCache; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkDiskCache (); } class QNetworkInterface; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkInterface (); } class QNetworkProxy; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkProxy (); } class QNetworkProxyFactory; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkProxyFactory (); } class QNetworkProxyQuery; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkProxyQuery (); } class QNetworkReply; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkReply (); } class QNetworkRequest; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkRequest (); } class QNetworkSession; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QNetworkSession (); } class QSslCertificate; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslCertificate (); } class QSslCertificateExtension; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslCertificateExtension (); } class QSslCipher; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslCipher (); } class QSslConfiguration; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslConfiguration (); } class QSslEllipticCurve; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslEllipticCurve (); } class QSslError; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslError (); } class QSslKey; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslKey (); } class QSslPreSharedKeyAuthenticator; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslPreSharedKeyAuthenticator (); } class QSslSocket; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QSslSocket (); } class QTcpServer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QTcpServer (); } class QTcpSocket; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QTcpSocket (); } class QUdpSocket; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTNETWORK_PUBLIC gsi::Class &qtdecl_QUdpSocket (); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc index aca4f52cb..86887cd4f 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtPrintSupportCommon.h" -#include "gsiDeclQtPrintSupportTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPageSetupDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPageSetupDialog.cc index 065358ed6..e1058f1b8 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPageSetupDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPageSetupDialog.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtPrintSupportCommon.h" -#include "gsiDeclQtPrintSupportTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc index c38ef921f..5b7c85abc 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtPrintSupportCommon.h" -#include "gsiDeclQtPrintSupportTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc index c47cd078f..ab69dfeb1 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtPrintSupportCommon.h" -#include "gsiDeclQtPrintSupportTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc index 2606df66d..7c5974003 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtPrintSupportCommon.h" -#include "gsiDeclQtPrintSupportTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc index 24df1e04c..05dc69253 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtPrintSupportCommon.h" -#include "gsiDeclQtPrintSupportTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc index 13e7bcebd..70446ea1e 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtPrintSupportCommon.h" -#include "gsiDeclQtPrintSupportTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinterInfo.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinterInfo.cc index 6ef743841..276d488f7 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinterInfo.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinterInfo.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtPrintSupportCommon.h" -#include "gsiDeclQtPrintSupportTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQtPrintSupportTypeTraits.h b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQtPrintSupportTypeTraits.h deleted file mode 100644 index acf212eb2..000000000 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQtPrintSupportTypeTraits.h +++ /dev/null @@ -1,6049 +0,0 @@ - -/* - - 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 generated/gsiDeclQtPrintSupportTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtPrintSupportTypeTraits -#define _HDR_gsiDeclQtPrintSupportTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractGraphicsShapeItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractGraphicsShapeItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractPrintDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractPrintDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractScrollArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractScrollArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSlider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSlider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTextDocumentLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTextDocumentLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractUndoItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractUndoItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessible; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessible_ActivationObserver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleActionInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleActionInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEditableTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleEditableTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableModelChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableModelChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTextRemoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextRemoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAction; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAction_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QApplicationStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QBackingStore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBrush; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QButtonGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QButtonGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCalendarWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCalendarWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCheckBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCheckBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QClipboard; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QCloseEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCloseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QColor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QColorDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColorDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColormap; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QColumnView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColumnView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QComboBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QComboBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLinkButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLinkButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommonStyle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommonStyle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCompleter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCompleter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QConicalGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QContextMenuEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QContextMenuEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDataWidgetMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDataWidgetMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTimeEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateTimeEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDesktopServices; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDesktopWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDesktopWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDial; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDial_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialogButtonBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialogButtonBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDirModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDirModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDockWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDockWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDoubleValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragLeaveEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragLeaveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QErrorMessage; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QErrorMessage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QExposeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QExposeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileIconProvider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileIconProvider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileOpenEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileOpenEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFocusEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFocusEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFocusFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFocusFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontComboBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontComboBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontDatabase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetrics; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetricsF; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFormLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFormLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGenericPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGenericPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGenericPluginFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGestureEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureRecognizer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureRecognizer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGlyphRun; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGraphicsAnchor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsAnchor_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsAnchorLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsAnchorLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsBlurEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsBlurEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsColorizeEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsColorizeEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsDropShadowEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsDropShadowEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEllipseItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEllipseItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsGridLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsGridLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLayoutItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsLayoutItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLineItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLineItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLinearLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLinearLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsOpacityEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsOpacityEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPathItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPathItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPixmapItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPixmapItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPolygonItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPolygonItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsProxyWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsProxyWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRectItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRectItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRotation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRotation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScale; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScale_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScene; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScene_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneContextMenuEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneContextMenuEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneDragDropEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneDragDropEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsSceneEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsSceneHelpEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHelpEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHoverEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHoverEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMouseEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMouseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneResizeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneResizeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneWheelEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneWheelEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSimpleTextItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSimpleTextItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTextItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTextItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTransform; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsTransform_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGridLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGridLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGroupBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGroupBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGuiApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGuiApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHeaderView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHeaderView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHideEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHideEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHoverEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHoverEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIcon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEnginePlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEnginePlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImage; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImageIOHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageIOPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethod; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QInputMethodEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIntValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIntValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemEditorCreatorBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemEditorCreatorBase_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemEditorFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemEditorFactory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeySequence; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QKeySequenceEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QKeySequenceEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLCDNumber; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLCDNumber_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLabel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLabel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLayoutItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLayoutItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLineEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLinearGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QListView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QListWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMainWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMainWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix4x4; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMdiArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiSubWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiSubWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenu; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenu_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenuBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenuBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMouseEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMouseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMovie; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMovie_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNativeGestureEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPageLayout; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPageSetupDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPageSetupDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPageSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPagedPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPagedPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintDeviceWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDeviceWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintEngineState; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPainter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPath; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPathStroker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPalette; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPanGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPanGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPdfWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPdfWriter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPen; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPictureFormatPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPictureFormatPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPinchGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPinchGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPixmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmapCache; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPlainTextDocumentLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlainTextDocumentLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlainTextEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPlainTextEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPlatformSurfaceEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlatformSurfaceEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygonF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPrintDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPrintDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPrintEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPrintEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPrintPreviewDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPrintPreviewDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPrintPreviewWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPrintPreviewWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPrinter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPrinter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPrinterInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProgressBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPushButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPushButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QQuaternion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadialGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadioButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRadioButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRasterWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRasterWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRawFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExpValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegExpValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRegularExpressionValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QResizeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResizeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRubberBand; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRubberBand_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScreen; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreen_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScroller; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QScrollerProperties; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QScrollerProperties_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSessionManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QShortcut; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcut_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcutEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcutEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShowEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QShowEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeGrip; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSizeGrip_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSizePolicy; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSlider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSlider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSpacerItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSpacerItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplashScreen; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplashScreen_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitterHandle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSplitterHandle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStackedLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStaticText; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStatusBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStatusBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStatusTipEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStatusTipEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyleFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturn; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturnMask; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturnVariant; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHints; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyleHints_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyleOption; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionButton; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionComboBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionComplex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionDockWidget; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionFocusRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionFrame; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionGraphicsItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionGroupBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionHeader; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionMenuItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionProgressBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionRubberBand; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSizeGrip; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSlider; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTab; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTabBarBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTabWidgetFrame; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTitleBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolButton; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionViewItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStylePainter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStylePlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStylePlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyledItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyledItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSurfaceFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSwipeGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSwipeGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSyntaxHighlighter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSyntaxHighlighter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSystemTrayIcon; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSystemTrayIcon_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTableWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTableWidgetSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTabletEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTabletEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTapAndHoldGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapAndHoldGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBlock; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextBlockGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextBlockUserData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockUserData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBrowser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBrowser_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextCharFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextDocument; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocument_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocumentFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDocumentWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrameFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextImageFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextInlineObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLength; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextList; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextList_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextListFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextOption; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextTable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTableCell; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableCellFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBarChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBarChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolTip; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchDevice; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTouchEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTransform; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTreeWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTreeWidgetItemIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QUndoCommand; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoCommand_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoStack; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoStack_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVector2D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector3D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector4D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWhatsThis; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWhatsThisClickedEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWhatsThisClickedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWidgetAction; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetAction_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindowStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindowStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWizard; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizard_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizardPage; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizardPage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiQtExternals.h b/src/gsiqt/qt5/QtPrintSupport/gsiQtExternals.h index e82aef8bb..20d764326 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtPrintSupport/gsiQtExternals.h @@ -35,67 +35,34 @@ class QAbstractPrintDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTPRINTSUPPORT_PUBLIC gsi::Class &qtdecl_QAbstractPrintDialog (); } class QPageSetupDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTPRINTSUPPORT_PUBLIC gsi::Class &qtdecl_QPageSetupDialog (); } class QPrintDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTPRINTSUPPORT_PUBLIC gsi::Class &qtdecl_QPrintDialog (); } class QPrintEngine; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTPRINTSUPPORT_PUBLIC gsi::Class &qtdecl_QPrintEngine (); } class QPrintPreviewDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTPRINTSUPPORT_PUBLIC gsi::Class &qtdecl_QPrintPreviewDialog (); } class QPrintPreviewWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTPRINTSUPPORT_PUBLIC gsi::Class &qtdecl_QPrintPreviewWidget (); } class QPrinter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTPRINTSUPPORT_PUBLIC gsi::Class &qtdecl_QPrinter (); } class QPrinterInfo; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTPRINTSUPPORT_PUBLIC gsi::Class &qtdecl_QPrinterInfo (); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSql.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSql.cc index a1eec58be..f945e1f42 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSql.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSql.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDatabase.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDatabase.cc index 9acbf6936..1887ade9e 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDatabase.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDatabase.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc index d6fdbf092..f817f13c6 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriverCreatorBase.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriverCreatorBase.cc index 0da89358b..8a1b4ca7a 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriverCreatorBase.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriverCreatorBase.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlError.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlError.cc index 039e7e334..0d45023cd 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlError.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlError.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlField.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlField.cc index 6d651ec1a..245aae203 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlField.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlField.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc index b645fe7af..29c5cf2c8 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQuery.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQuery.cc index ebf274617..c3405e42f 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQuery.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQuery.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc index bd4d4826d..151c6c6ff 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc @@ -45,7 +45,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRecord.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRecord.cc index 0284fadfe..5f7ce80ee 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRecord.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRecord.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelation.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelation.cc index e3c07c2d2..00817e4e0 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelation.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelation.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc index a651b190f..de4170b11 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc @@ -48,7 +48,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc index 090a49b7b..d5fc8f92b 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc index 06ff5fbc5..01d5ee9b5 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtSqlCommon.h" -#include "gsiDeclQtSqlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQtSqlTypeTraits.h b/src/gsiqt/qt5/QtSql/gsiDeclQtSqlTypeTraits.h deleted file mode 100644 index d4b3224a6..000000000 --- a/src/gsiqt/qt5/QtSql/gsiDeclQtSqlTypeTraits.h +++ /dev/null @@ -1,1716 +0,0 @@ - -/* - - 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 generated/gsiDeclQtSqlTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtSqlTypeTraits -#define _HDR_gsiDeclQtSqlTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSql_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSqlDatabase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSqlDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSqlDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSqlDriverCreatorBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSqlDriverCreatorBase_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSqlError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSqlField; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSqlIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSqlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSqlQueryModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSqlQueryModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSqlRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSqlRelation; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSqlRelationalTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSqlRelationalTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSqlResult; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSqlResult_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSqlTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSqlTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtSql/gsiQtExternals.h b/src/gsiqt/qt5/QtSql/gsiQtExternals.h index 5a56423ab..963509846 100644 --- a/src/gsiqt/qt5/QtSql/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtSql/gsiQtExternals.h @@ -35,102 +35,54 @@ class QSqlDatabase; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlDatabase (); } class QSqlDriver; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlDriver (); } class QSqlDriverCreatorBase; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlDriverCreatorBase (); } class QSqlError; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlError (); } class QSqlField; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlField (); } class QSqlIndex; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlIndex (); } class QSqlQuery; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlQuery (); } class QSqlQueryModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlQueryModel (); } class QSqlRecord; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlRecord (); } class QSqlRelation; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlRelation (); } class QSqlRelationalTableModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlRelationalTableModel (); } class QSqlResult; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlResult (); } class QSqlTableModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTSQL_PUBLIC gsi::Class &qtdecl_QSqlTableModel (); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc index 21933770a..fa91fd824 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc @@ -63,7 +63,6 @@ #include #include "gsiQt.h" #include "gsiQtSvgCommon.h" -#include "gsiDeclQtSvgTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc index 270bc8a01..111db46ba 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtSvgCommon.h" -#include "gsiDeclQtSvgTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc index f40700010..4cc28ebfc 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtSvgCommon.h" -#include "gsiDeclQtSvgTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc index be2e6859c..2aae053cf 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtSvgCommon.h" -#include "gsiDeclQtSvgTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQtSvgTypeTraits.h b/src/gsiqt/qt5/QtSvg/gsiDeclQtSvgTypeTraits.h deleted file mode 100644 index 41fc54103..000000000 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQtSvgTypeTraits.h +++ /dev/null @@ -1,5999 +0,0 @@ - -/* - - 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 generated/gsiDeclQtSvgTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtSvgTypeTraits -#define _HDR_gsiDeclQtSvgTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractGraphicsShapeItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractGraphicsShapeItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractScrollArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractScrollArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSlider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSlider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTextDocumentLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTextDocumentLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractUndoItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractUndoItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessible; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessible_ActivationObserver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleActionInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleActionInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEditableTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleEditableTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableModelChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableModelChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTextRemoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextRemoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAction; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAction_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QApplicationStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QBackingStore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBrush; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QButtonGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QButtonGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCalendarWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCalendarWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCheckBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCheckBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QClipboard; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QCloseEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCloseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QColor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QColorDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColorDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColormap; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QColumnView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColumnView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QComboBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QComboBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLinkButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLinkButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommonStyle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommonStyle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCompleter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCompleter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QConicalGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QContextMenuEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QContextMenuEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDataWidgetMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDataWidgetMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTimeEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateTimeEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDesktopServices; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDesktopWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDesktopWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDial; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDial_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialogButtonBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialogButtonBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDirModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDirModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDockWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDockWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDoubleValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragLeaveEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragLeaveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QErrorMessage; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QErrorMessage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QExposeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QExposeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileIconProvider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileIconProvider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileOpenEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileOpenEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFocusEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFocusEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFocusFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFocusFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontComboBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontComboBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontDatabase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetrics; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetricsF; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFormLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFormLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGenericPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGenericPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGenericPluginFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGestureEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureRecognizer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureRecognizer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGlyphRun; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGraphicsAnchor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsAnchor_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsAnchorLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsAnchorLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsBlurEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsBlurEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsColorizeEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsColorizeEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsDropShadowEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsDropShadowEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEllipseItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEllipseItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsGridLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsGridLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLayoutItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsLayoutItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLineItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLineItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLinearLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLinearLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsOpacityEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsOpacityEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPathItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPathItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPixmapItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPixmapItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPolygonItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPolygonItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsProxyWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsProxyWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRectItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRectItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRotation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRotation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScale; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScale_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScene; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScene_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneContextMenuEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneContextMenuEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneDragDropEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneDragDropEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsSceneEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsSceneHelpEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHelpEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHoverEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHoverEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMouseEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMouseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneResizeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneResizeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneWheelEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneWheelEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSimpleTextItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSimpleTextItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSvgItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSvgItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTextItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTextItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTransform; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsTransform_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGridLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGridLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGroupBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGroupBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGuiApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGuiApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHeaderView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHeaderView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHideEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHideEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHoverEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHoverEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIcon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEnginePlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEnginePlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImage; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImageIOHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageIOPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethod; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QInputMethodEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIntValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIntValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemEditorCreatorBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemEditorCreatorBase_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemEditorFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemEditorFactory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeySequence; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QKeySequenceEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QKeySequenceEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLCDNumber; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLCDNumber_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLabel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLabel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLayoutItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLayoutItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLineEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLinearGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QListView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QListWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMainWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMainWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix4x4; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMdiArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiSubWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiSubWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenu; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenu_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenuBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenuBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMouseEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMouseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMovie; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMovie_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNativeGestureEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPageLayout; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPageSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPagedPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPagedPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintDeviceWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDeviceWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintEngineState; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPainter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPath; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPathStroker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPalette; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPanGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPanGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPdfWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPdfWriter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPen; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPictureFormatPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPictureFormatPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPinchGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPinchGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPixmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmapCache; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPlainTextDocumentLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlainTextDocumentLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlainTextEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPlainTextEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPlatformSurfaceEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlatformSurfaceEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygonF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProgressBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPushButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPushButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QQuaternion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadialGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadioButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRadioButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRasterWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRasterWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRawFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExpValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegExpValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRegularExpressionValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QResizeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResizeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRubberBand; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRubberBand_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScreen; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreen_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScroller; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QScrollerProperties; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QScrollerProperties_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSessionManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QShortcut; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcut_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcutEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcutEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShowEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QShowEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeGrip; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSizeGrip_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSizePolicy; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSlider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSlider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSpacerItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSpacerItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplashScreen; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplashScreen_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitterHandle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSplitterHandle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStackedLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStaticText; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStatusBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStatusBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStatusTipEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStatusTipEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyleFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturn; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturnMask; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturnVariant; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHints; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyleHints_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyleOption; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionButton; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionComboBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionComplex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionDockWidget; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionFocusRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionFrame; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionGraphicsItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionGroupBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionHeader; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionMenuItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionProgressBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionRubberBand; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSizeGrip; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSlider; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTab; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTabBarBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTabWidgetFrame; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTitleBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolButton; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionViewItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStylePainter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStylePlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStylePlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyledItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyledItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSurfaceFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSvgGenerator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSvgGenerator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSvgRenderer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSvgRenderer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSvgWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSvgWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSwipeGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSwipeGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSyntaxHighlighter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSyntaxHighlighter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSystemTrayIcon; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSystemTrayIcon_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTableWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTableWidgetSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTabletEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTabletEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTapAndHoldGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapAndHoldGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBlock; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextBlockGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextBlockUserData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockUserData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBrowser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBrowser_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextCharFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextDocument; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocument_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocumentFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDocumentWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrameFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextImageFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextInlineObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLength; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextList; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextList_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextListFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextOption; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextTable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTableCell; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableCellFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBarChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBarChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolTip; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchDevice; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTouchEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTransform; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTreeWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTreeWidgetItemIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QUndoCommand; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoCommand_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoStack; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoStack_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVector2D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector3D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector4D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWhatsThis; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWhatsThisClickedEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWhatsThisClickedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWidgetAction; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetAction_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindowStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindowStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWizard; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizard_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizardPage; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizardPage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtSvg/gsiQtExternals.h b/src/gsiqt/qt5/QtSvg/gsiQtExternals.h index 19df8a1a1..edba1a009 100644 --- a/src/gsiqt/qt5/QtSvg/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtSvg/gsiQtExternals.h @@ -35,34 +35,18 @@ class QGraphicsSvgItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTSVG_PUBLIC gsi::Class &qtdecl_QGraphicsSvgItem (); } class QSvgGenerator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTSVG_PUBLIC gsi::Class &qtdecl_QSvgGenerator (); } class QSvgRenderer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTSVG_PUBLIC gsi::Class &qtdecl_QSvgRenderer (); } class QSvgWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTSVG_PUBLIC gsi::Class &qtdecl_QSvgWidget (); } diff --git a/src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc b/src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc index 6419a123e..61140253a 100644 --- a/src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc +++ b/src/gsiqt/qt5/QtUiTools/gsiDeclQUiLoader.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtUiToolsCommon.h" -#include "gsiDeclQtUiToolsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtUiTools/gsiDeclQtUiToolsTypeTraits.h b/src/gsiqt/qt5/QtUiTools/gsiDeclQtUiToolsTypeTraits.h deleted file mode 100644 index 85928cc3b..000000000 --- a/src/gsiqt/qt5/QtUiTools/gsiDeclQtUiToolsTypeTraits.h +++ /dev/null @@ -1,138 +0,0 @@ - -/* - - 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 generated/gsiDeclQtUiToolsTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtUiToolsTypeTraits -#define _HDR_gsiDeclQtUiToolsTypeTraits - -#include "gsiTypes.h" - - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUiLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUiLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtUiTools/gsiQtExternals.h b/src/gsiqt/qt5/QtUiTools/gsiQtExternals.h index 789b4e182..9ea29b4ca 100644 --- a/src/gsiqt/qt5/QtUiTools/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtUiTools/gsiQtExternals.h @@ -35,10 +35,6 @@ class QUiLoader; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTUITOOLS_PUBLIC gsi::Class &qtdecl_QUiLoader (); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc index f91a97109..73cba3a27 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc index ec19a9c41..20ad622f4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc @@ -59,7 +59,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc index dc67df5e8..4989124e0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc @@ -45,7 +45,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc index 253bd5308..d19603722 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc @@ -89,7 +89,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc index ff8cca85f..85aa983bb 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc index 08e8a6254..1c978dceb 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc index b47822bdf..b5a0296ca 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc index 1ec1dbceb..6e62851af 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc index 1f4e85b19..4c826227c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc index 5d2d96c61..53c81b45a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc index 697916269..033c24d6d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc index c30d2c794..c9ded1c76 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc index 06ae918ad..f3e27b1bb 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc index 1633be21b..00dcbad2f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc index 1a70c5500..405251c04 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc index 927768fff..8ff515ea2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColormap.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColormap.cc index f9f2fc4e4..68a8c1f72 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColormap.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColormap.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc index 3e4ce7ea7..043efa90d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc @@ -90,7 +90,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc index dbf1c9f5d..164ff5ac5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc @@ -89,7 +89,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc index 837bd5d74..357366772 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc @@ -84,7 +84,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc index dc3694994..838636e27 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc @@ -50,7 +50,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc index e50567212..260e73d2f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc index 4cbb0d3ee..3e740beac 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc index be326d220..741fbfef3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc @@ -87,7 +87,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc index ddeedf0c2..c3c1b4e36 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc @@ -87,7 +87,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc index 62783ccf4..d7940f310 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc index 1b2a50f10..971d5928e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc index 11c50b333..606f0d338 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc index c3a1489cf..61a902f42 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc index a73262c84..4a069c865 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc @@ -44,7 +44,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc index 902cbceb3..74d799526 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc index 335539795..e93b91064 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc index 3e1b22de9..bd27c177d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc index 5d286c9af..7b07b7c41 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc @@ -86,7 +86,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc index 4b1b77bb7..d58929790 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc index cd422b341..fff74f013 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc index 224263fa3..605394a3e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc index 3272c4dc5..aab268dbf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc @@ -89,7 +89,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc index 63b4fabb2..ee35c1030 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc index c3265b32c..0ba9d7448 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc index a35c22e8f..545ce7f1e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc index fbf017c39..745b46a66 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc index a2e14bcf1..7e296c8a2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc index f1a55b338..a2e4395b2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc index 229ec648b..867b6485c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc index 28c08aff2..a070c49f8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc index f9ce480e5..32be39162 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc index b1435e2e8..37b436ed2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc index 900b97b9a..1679d0526 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc index 7cbdb2f2a..a5e56c684 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc index 1b91d5011..5dbd0ede6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc @@ -59,7 +59,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc index 7780a52f7..0cebf278a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc index 8a103c021..acd927bf9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc @@ -38,9 +38,9 @@ #include #include #include +#include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc index 4c9c25c20..5e0bc8858 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc index 443eb607c..1f265585b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc @@ -56,7 +56,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc index 8efd94fbf..5f05c55e3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc index 2abec92ce..c0340c2c0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc index 35b0efb7a..27590decd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc @@ -59,7 +59,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc index 004d76758..e20159ad4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc index 396e10531..fcca75fb2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc @@ -61,7 +61,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc index f444082bd..42ce5bd88 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc @@ -41,7 +41,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc index d01846071..ea32790f6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc @@ -59,7 +59,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc index da1cf16cf..fcf63803a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc @@ -58,7 +58,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc index 7fb580693..dec10b90a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc @@ -59,7 +59,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc index 2171a3ee3..0fb79c9a8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc @@ -77,7 +77,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc index c7c60758f..7064cd4c4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc @@ -59,7 +59,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc index 088f4f088..03e39fcd7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc index 609a14ca2..27c0dc7d3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc index e19261017..b0424537c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc @@ -49,7 +49,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc index 3bad39fee..00b72f922 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc index ab79c2c75..b074b16d4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneEvent.cc index e2ddc9008..c40e8e2e8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneEvent.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc index f4e8e3e55..638668ef4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc index 64a407b31..ca8d82775 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc index f940591ef..50f54fe00 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc index a98f47a02..a3024b9dd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc index 1b7d5b831..ff64f407b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc index 91ef75727..e47447785 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc index 48f68d93e..d06968f27 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc @@ -60,7 +60,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc index 4238253c6..0eeead7d4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc @@ -66,7 +66,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc index 3d6185c7f..17ca584ac 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc index 9be0c5210..fe265c7d1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc @@ -93,7 +93,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc index 1fb7e91fa..5dc180d41 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc @@ -76,7 +76,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc index 1499e5b3a..e609d0f11 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc index 8468ae92c..c85c0aa95 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc index 8dc515241..767a8ec89 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc index 35d445d24..7dc6d9a82 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc @@ -89,7 +89,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc index 9473e159e..db3161e2a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc index bbeace53b..652aa9f0e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc @@ -50,7 +50,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc index a7a5c0e91..27a0483f4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc index 1dd03a429..6cacf75dc 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc index 7154a8060..0eb24fcc7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc index a0bc1d900..08846e9ae 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc index a25e96cfe..556484fb4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc @@ -84,7 +84,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc index 5a192f28e..f26fb3005 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc index 803e1bac3..fc010cd41 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc index d799f05f5..96efa251e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc @@ -85,7 +85,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc index 0fa118f91..a24fd3c93 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc @@ -89,7 +89,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc index 6b0949c00..236d09d22 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc @@ -91,7 +91,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc index 824e9693c..e623a939a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc index acaae6cfe..3571f8792 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc @@ -86,7 +86,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc index 9fe166acd..cd3907be0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc @@ -85,7 +85,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc index 480a06ed3..3f636d805 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc index a65f5e765..c10f7b9d6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc index 0e1f38344..e38b43249 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc index b81e9868c..ff7ed2c14 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc @@ -84,7 +84,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc index 3bd6bb5b1..595e59e91 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc index ce192c43b..c5ed6a5bb 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc index 2710c9a9d..e2b4ab3ea 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc @@ -48,7 +48,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc index bc5645298..7cd7fb78a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc @@ -94,7 +94,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc index b9787fe83..acabec40c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc index 9a3c925d5..e823781d9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc @@ -84,7 +84,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc index 9a23aa0f9..1fb76df37 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc @@ -84,7 +84,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc index e1026eb45..83d116e78 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc index d0bbd0712..4911688d5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc index f390534cb..236de7d4a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc index bb502f42f..5a3def6fe 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScroller.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScroller.cc index 9d7b774ec..6775f68c5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScroller.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScroller.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollerProperties.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollerProperties.cc index eea5f7de7..841a21b1b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollerProperties.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollerProperties.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc index 0ee482946..62e3fa75f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc index 154d2ed01..8530eed73 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizePolicy.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizePolicy.cc index ca5676b7e..867dfa04b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizePolicy.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizePolicy.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc index a1677f472..7aaa2a6d9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc index 6a6db352a..b9bef65cc 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc index c95135ec8..f709565c8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc index 248dc835e..0e749a976 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc index d0a4321c6..c72ba8249 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc index 2ea28ff34..7f37d64bf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc index 4ab13395f..6f00074b9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc index 5654086ba..4396be656 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc index ecfd54571..f603a63a3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc @@ -81,7 +81,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc index 118e02cda..b760b2a0b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc @@ -49,7 +49,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleFactory.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleFactory.cc index 7216e02b2..226918d72 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleFactory.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleFactory.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturn.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturn.cc index 445a7644f..7affb966d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturn.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturn.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturnMask.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturnMask.cc index 3ca3a9eaa..b198b9593 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturnMask.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturnMask.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturnVariant.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturnVariant.cc index b7b8ce86c..718e01a8f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturnVariant.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturnVariant.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOption.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOption.cc index c943c241b..96b28342b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOption.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOption.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionButton.cc index 67a2ec298..afbad00e2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionButton.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComboBox.cc index 8dc5329f0..6ff1daee1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComboBox.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComplex.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComplex.cc index 34da6ed99..2f35c1c99 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComplex.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComplex.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionDockWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionDockWidget.cc index 99d9e2caf..7e90a9d77 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionDockWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionDockWidget.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFocusRect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFocusRect.cc index 6dc98f9b4..e029e7fcd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFocusRect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFocusRect.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFrame.cc index 0fd4df503..8b89825c3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFrame.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGraphicsItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGraphicsItem.cc index 2ff6b72c9..3851276ce 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGraphicsItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGraphicsItem.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGroupBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGroupBox.cc index f8cadfab7..abd81031c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGroupBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGroupBox.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionHeader.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionHeader.cc index 77c1378f8..62509488a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionHeader.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionHeader.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionMenuItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionMenuItem.cc index 467f5c1a2..a8fc2bed8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionMenuItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionMenuItem.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionProgressBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionProgressBar.cc index 77fe03d92..adb211409 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionProgressBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionProgressBar.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionRubberBand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionRubberBand.cc index 6e6c2bd4b..9df6ed772 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionRubberBand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionRubberBand.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSizeGrip.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSizeGrip.cc index 5cfe5d697..968ea9fc2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSizeGrip.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSizeGrip.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSlider.cc index 156df1adb..b24ec5907 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSlider.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSpinBox.cc index a39fd32dd..5420c6b51 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSpinBox.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTab.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTab.cc index 74abd3fff..03f3db28c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTab.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTab.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabBarBase.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabBarBase.cc index b31e1ed10..9f26af09e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabBarBase.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabBarBase.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabWidgetFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabWidgetFrame.cc index d4cc566e9..fdb548e8c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabWidgetFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabWidgetFrame.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTitleBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTitleBar.cc index 28b60ccde..b0894f123 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTitleBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTitleBar.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBar.cc index 7b510e9d0..9440bbcdf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBar.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBox.cc index 4b660ef5a..020b2ddc4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBox.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolButton.cc index 3d35d56dd..8ce6c8af5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolButton.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionViewItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionViewItem.cc index 0a4126186..fc3fca8f3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionViewItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionViewItem.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc index a08e88f40..52ed7971c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc @@ -62,7 +62,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc index 20fc958bc..5c8e55ed9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc index a469bcd6e..ec3187225 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc @@ -47,7 +47,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc index be64adeaa..59e162e23 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc index dc4c72d22..676cca538 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc @@ -39,7 +39,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc index 2df33fdc6..7d8852762 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc index fad381315..fbb9cf2cd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc index fd4d6761d..d77c76b1b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc @@ -90,7 +90,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc index bc3711417..d2013585c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc @@ -93,7 +93,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc index f048d6c26..7a7b3a570 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetSelectionRange.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetSelectionRange.cc index 2f4b3e15a..2f480cc89 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetSelectionRange.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetSelectionRange.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc index 27d367f91..8fa850544 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc index 3662e0eec..9b9d586e8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc index c03153841..536107ac2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc @@ -92,7 +92,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc index 696eaa81a..05d861be3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc @@ -92,7 +92,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit_ExtraSelection.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit_ExtraSelection.cc index bbb61fae3..25e764d77 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit_ExtraSelection.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit_ExtraSelection.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc index 875c5de33..4a2d189d1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc @@ -87,7 +87,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc index 021c69ac8..71294da7d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc index 7cdb79d26..044218052 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc index 719d805cf..3c4b4da4d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc @@ -84,7 +84,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolTip.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolTip.cc index 51f900778..330de099d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolTip.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolTip.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc index c8643c1f3..500e48564 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc @@ -90,7 +90,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc index 388afa701..a8c5f201a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc @@ -92,7 +92,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc index c4cd797dc..dc98286e5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItemIterator.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItemIterator.cc index 6d60a1af2..0deae6c7a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItemIterator.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItemIterator.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc index 123ed4bb2..32b32204e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc index 0f6c62915..d75d18408 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc index e2b4915bc..d0ea880b6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc index 9adab58db..f8a4c75e7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc @@ -91,7 +91,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc index 0a305f435..13a80a5b8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc @@ -43,7 +43,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWhatsThis.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWhatsThis.cc index d5daa74ef..3f048b0fa 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWhatsThis.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWhatsThis.cc @@ -34,7 +34,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc index d40aadca6..afc1d36d3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc @@ -80,7 +80,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc index 1a0b374cc..f05fdbbec 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc @@ -42,7 +42,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc index 030ce49e2..176bb805e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc index 99f041b11..7976d538c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc @@ -83,7 +83,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc index 26f0b7757..e59f2d3c6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc @@ -82,7 +82,6 @@ #include #include "gsiQt.h" #include "gsiQtWidgetsCommon.h" -#include "gsiDeclQtWidgetsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQtWidgetsTypeTraits.h b/src/gsiqt/qt5/QtWidgets/gsiDeclQtWidgetsTypeTraits.h deleted file mode 100644 index b50df98d3..000000000 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQtWidgetsTypeTraits.h +++ /dev/null @@ -1,5943 +0,0 @@ - -/* - - 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 generated/gsiDeclQtWidgetsTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtWidgetsTypeTraits -#define _HDR_gsiDeclQtWidgetsTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractGraphicsShapeItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractGraphicsShapeItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractItemView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractScrollArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractScrollArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSlider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSlider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTextDocumentLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTextDocumentLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractUndoItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractUndoItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessible; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessible_ActivationObserver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleActionInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleActionInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEditableTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleEditableTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleImageInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAccessibleStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableCellInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTableModelChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTableModelChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextCursorEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInsertEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleTextRemoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextRemoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextSelectionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleTextUpdateEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAccessibleValueInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QAccessibleWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QAction; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAction_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QActionGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QApplicationStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QBackingStore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBitmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QBrush; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QButtonGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QButtonGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCalendarWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCalendarWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCheckBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCheckBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QClipboard; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QCloseEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCloseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QColor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QColorDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColorDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColormap; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QColumnView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QColumnView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QComboBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QComboBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLinkButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommandLinkButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommonStyle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCommonStyle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCompleter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCompleter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QConicalGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QContextMenuEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QContextMenuEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDataWidgetMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDataWidgetMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTimeEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDateTimeEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDesktopServices; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDesktopWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDesktopWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDial; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDial_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialogButtonBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDialogButtonBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDirModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDirModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDockWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDockWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDoubleValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDoubleValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDrag_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragLeaveEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragLeaveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDragMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDragMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDropEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEnterEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEnterEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QErrorMessage; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QErrorMessage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QExposeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QExposeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileIconProvider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileIconProvider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileOpenEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileOpenEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFocusEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFocusEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFocusFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFocusFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontComboBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontComboBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontDatabase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFontDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFontInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetrics; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFontMetricsF; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QFormLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFormLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGenericPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGenericPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGenericPluginFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGestureEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureRecognizer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGestureRecognizer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGlyphRun; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QGraphicsAnchor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsAnchor_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsAnchorLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsAnchorLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsBlurEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsBlurEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsColorizeEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsColorizeEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsDropShadowEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsDropShadowEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEllipseItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsEllipseItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsGridLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsGridLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsItemGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLayoutItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsLayoutItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLineItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLineItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLinearLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsLinearLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsOpacityEffect; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsOpacityEffect_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPathItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPathItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPixmapItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPixmapItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPolygonItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsPolygonItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsProxyWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsProxyWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRectItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRectItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRotation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsRotation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScale; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScale_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScene; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsScene_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneContextMenuEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneContextMenuEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneDragDropEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneDragDropEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsSceneEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsSceneHelpEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHelpEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHoverEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneHoverEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMouseEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMouseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneResizeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneResizeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneWheelEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSceneWheelEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSimpleTextItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsSimpleTextItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTextItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTextItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsTransform; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGraphicsTransform_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGraphicsWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGridLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGridLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGroupBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGroupBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QGuiApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QGuiApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHeaderView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHeaderView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHelpEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHideEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHideEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHoverEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QHoverEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIcon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconDragEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIconEnginePlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIconEnginePlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImage; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QImageIOHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageIOPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QImageIOPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QImageWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QInputEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethod; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QInputMethodEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QInputMethodQueryEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QIntValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIntValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemEditorCreatorBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemEditorCreatorBase_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemEditorFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemEditorFactory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeyEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QKeySequence; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QKeySequenceEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QKeySequenceEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLCDNumber; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLCDNumber_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLabel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLabel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLayoutItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLayoutItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLineEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLinearGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QListView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QListWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QListWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMainWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMainWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMatrix4x4; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMdiArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiSubWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMdiSubWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenu; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenu_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenuBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMenuBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMouseEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMouseEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMoveEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QMovie; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMovie_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNativeGestureEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QOffscreenSurface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPageLayout; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPageSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPagedPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPagedPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintDeviceWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintDeviceWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEngine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPaintEngineState; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPaintEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPaintEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPainter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPath; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPainterPathStroker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPalette; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPanGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPanGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPdfWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPdfWriter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPen; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPicture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPictureFormatPlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPictureFormatPlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPinchGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPinchGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPixmap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmap_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPixmapCache; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPlainTextDocumentLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlainTextDocumentLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlainTextEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPlainTextEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPlatformSurfaceEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPlatformSurfaceEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygon; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPolygonF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProgressBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressDialog; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProgressDialog_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPushButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPushButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QQuaternion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadialGradient; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRadioButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRadioButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRasterWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRasterWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRawFont; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExpValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegExpValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRegion; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRegularExpressionValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QResizeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResizeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRubberBand; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRubberBand_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScreen; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreen_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScreenOrientationChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollArea; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollArea_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QScrollEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScrollPrepareEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QScroller; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QScrollerProperties; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QScrollerProperties_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSessionManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QShortcut; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcut_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcutEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShortcutEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QShowEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QShowEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeGrip; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSizeGrip_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSizePolicy; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSlider; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSlider_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSpacerItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSpacerItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSpinBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplashScreen; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplashScreen_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSplitterHandle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSplitterHandle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStackedLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStackedWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStaticText; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStatusBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStatusBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStatusTipEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStatusTipEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyle; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyle_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyleFactory; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturn; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturnMask; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHintReturnVariant; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleHints; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyleHints_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStyleOption; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionButton; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionComboBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionComplex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionDockWidget; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionFocusRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionFrame; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionGraphicsItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionGroupBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionHeader; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionMenuItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionProgressBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionRubberBand; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSizeGrip; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSlider; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionSpinBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTab; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTabBarBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTabWidgetFrame; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionTitleBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolBar; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolBox; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionToolButton; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStyleOptionViewItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStylePainter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStylePlugin; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QStylePlugin_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyledItemDelegate; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStyledItemDelegate_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSurface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSurfaceFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSwipeGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSwipeGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSyntaxHighlighter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSyntaxHighlighter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSystemTrayIcon; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSystemTrayIcon_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTabWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTableWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTableWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTableWidgetSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTabletEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTabletEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTapAndHoldGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapAndHoldGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapGesture; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTapGesture_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBlock; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextBlockGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextBlockUserData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBlockUserData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextBrowser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBrowser_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextCharFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextCursor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextDocument; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocument_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDocumentFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextDocumentWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrame; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextFrame_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextFrameFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextImageFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextInlineObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLength; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextList; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextList_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextListFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextObjectInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextOption; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextTable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextTableCell; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableCellFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextTableFormat; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeEdit; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeEdit_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBarChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBarChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QToolBox; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolBox_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolButton; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolButton_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QToolTip; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchDevice; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTouchEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTouchEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTransform; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTreeWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTreeWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTreeWidgetItemIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QUndoCommand; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoCommand_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoStack; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoStack_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoView; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUndoView_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVBoxLayout; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVBoxLayout_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QValidator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVector2D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector3D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVector4D; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWhatsThis; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWhatsThisClickedEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWhatsThisClickedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWheelEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidget; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWidget_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWidgetAction; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetAction_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetItem; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWidgetItem_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindow; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindow_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWindowStateChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWindowStateChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QWizard; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizard_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizardPage; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWizardPage_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtWidgets/gsiQtExternals.h b/src/gsiqt/qt5/QtWidgets/gsiQtExternals.h index 06732c92e..06a9873ff 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtWidgets/gsiQtExternals.h @@ -35,1561 +35,782 @@ class QAbstractButton; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAbstractButton (); } class QAbstractGraphicsShapeItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAbstractGraphicsShapeItem (); } class QAbstractItemDelegate; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAbstractItemDelegate (); } class QAbstractItemView; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAbstractItemView (); } class QAbstractScrollArea; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAbstractScrollArea (); } class QAbstractSlider; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAbstractSlider (); } class QAbstractSpinBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAbstractSpinBox (); } class QAccessibleWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAccessibleWidget (); } class QAction; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QAction (); } class QActionGroup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QActionGroup (); } class QApplication; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QApplication (); } class QBoxLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QBoxLayout (); } class QButtonGroup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QButtonGroup (); } class QCalendarWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QCalendarWidget (); } class QCheckBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QCheckBox (); } class QColorDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QColorDialog (); } class QColormap; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QColormap (); } class QColumnView; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QColumnView (); } class QComboBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QComboBox (); } class QCommandLinkButton; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QCommandLinkButton (); } class QCommonStyle; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QCommonStyle (); } class QCompleter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QCompleter (); } class QDataWidgetMapper; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDataWidgetMapper (); } class QDateEdit; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDateEdit (); } class QDateTimeEdit; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDateTimeEdit (); } class QDesktopWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDesktopWidget (); } class QDial; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDial (); } class QDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDialog (); } class QDialogButtonBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDialogButtonBox (); } class QDirModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDirModel (); } class QDockWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDockWidget (); } class QDoubleSpinBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QDoubleSpinBox (); } class QErrorMessage; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QErrorMessage (); } class QFileDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QFileDialog (); } class QFileIconProvider; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QFileIconProvider (); } class QFileSystemModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QFileSystemModel (); } class QFocusFrame; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QFocusFrame (); } class QFontComboBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QFontComboBox (); } class QFontDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QFontDialog (); } class QFormLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QFormLayout (); } class QFrame; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QFrame (); } class QGesture; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGesture (); } class QGestureEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGestureEvent (); } class QGestureRecognizer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGestureRecognizer (); } class QGraphicsAnchor; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsAnchor (); } class QGraphicsAnchorLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsAnchorLayout (); } class QGraphicsBlurEffect; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsBlurEffect (); } class QGraphicsColorizeEffect; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsColorizeEffect (); } class QGraphicsDropShadowEffect; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsDropShadowEffect (); } class QGraphicsEffect; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsEffect (); } class QGraphicsEllipseItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsEllipseItem (); } class QGraphicsGridLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsGridLayout (); } class QGraphicsItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsItem (); } class QGraphicsItemAnimation; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsItemAnimation (); } class QGraphicsItemGroup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsItemGroup (); } class QGraphicsLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsLayout (); } class QGraphicsLayoutItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsLayoutItem (); } class QGraphicsLineItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsLineItem (); } class QGraphicsLinearLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsLinearLayout (); } class QGraphicsObject; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsObject (); } class QGraphicsOpacityEffect; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsOpacityEffect (); } class QGraphicsPathItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsPathItem (); } class QGraphicsPixmapItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsPixmapItem (); } class QGraphicsPolygonItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsPolygonItem (); } class QGraphicsProxyWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsProxyWidget (); } class QGraphicsRectItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsRectItem (); } class QGraphicsRotation; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsRotation (); } class QGraphicsScale; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsScale (); } class QGraphicsScene; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsScene (); } class QGraphicsSceneContextMenuEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneContextMenuEvent (); } class QGraphicsSceneDragDropEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneDragDropEvent (); } class QGraphicsSceneEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneEvent (); } class QGraphicsSceneHelpEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneHelpEvent (); } class QGraphicsSceneHoverEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneHoverEvent (); } class QGraphicsSceneMouseEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneMouseEvent (); } class QGraphicsSceneMoveEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneMoveEvent (); } class QGraphicsSceneResizeEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneResizeEvent (); } class QGraphicsSceneWheelEvent; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSceneWheelEvent (); } class QGraphicsSimpleTextItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsSimpleTextItem (); } class QGraphicsTextItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsTextItem (); } class QGraphicsTransform; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsTransform (); } class QGraphicsView; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsView (); } class QGraphicsWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGraphicsWidget (); } class QGridLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGridLayout (); } class QGroupBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QGroupBox (); } class QHBoxLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QHBoxLayout (); } class QHeaderView; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QHeaderView (); } class QInputDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QInputDialog (); } class QItemDelegate; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QItemDelegate (); } class QItemEditorCreatorBase; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QItemEditorCreatorBase (); } class QItemEditorFactory; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QItemEditorFactory (); } class QKeySequenceEdit; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QKeySequenceEdit (); } class QLCDNumber; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QLCDNumber (); } class QLabel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QLabel (); } class QLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QLayout (); } class QLayoutItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QLayoutItem (); } class QLineEdit; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QLineEdit (); } class QListView; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QListView (); } class QListWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QListWidget (); } class QListWidgetItem; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QListWidgetItem (); } class QMainWindow; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QMainWindow (); } class QMdiArea; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QMdiArea (); } class QMdiSubWindow; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QMdiSubWindow (); } class QMenu; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QMenu (); } class QMenuBar; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QMenuBar (); } class QMessageBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QMessageBox (); } class QPanGesture; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QPanGesture (); } class QPinchGesture; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QPinchGesture (); } class QPlainTextDocumentLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QPlainTextDocumentLayout (); } class QPlainTextEdit; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QPlainTextEdit (); } class QProgressBar; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QProgressBar (); } class QProgressDialog; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QProgressDialog (); } class QPushButton; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QPushButton (); } class QRadioButton; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QRadioButton (); } class QRubberBand; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QRubberBand (); } class QScrollArea; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QScrollArea (); } class QScrollBar; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QScrollBar (); } class QScroller; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QScroller (); } class QScrollerProperties; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QScrollerProperties (); } class QShortcut; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QShortcut (); } class QSizeGrip; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSizeGrip (); } class QSizePolicy; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSizePolicy (); } class QSlider; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSlider (); } class QSpacerItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSpacerItem (); } class QSpinBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSpinBox (); } class QSplashScreen; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSplashScreen (); } class QSplitter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSplitter (); } class QSplitterHandle; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSplitterHandle (); } class QStackedLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStackedLayout (); } class QStackedWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStackedWidget (); } class QStatusBar; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStatusBar (); } class QStyle; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyle (); } class QStyleFactory; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleFactory (); } class QStyleHintReturn; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleHintReturn (); } class QStyleHintReturnMask; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleHintReturnMask (); } class QStyleHintReturnVariant; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleHintReturnVariant (); } class QStyleOption; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOption (); } class QStyleOptionButton; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionButton (); } class QStyleOptionComboBox; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionComboBox (); } class QStyleOptionComplex; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionComplex (); } class QStyleOptionDockWidget; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionDockWidget (); } class QStyleOptionFocusRect; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionFocusRect (); } class QStyleOptionFrame; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionFrame (); } class QStyleOptionGraphicsItem; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionGraphicsItem (); } class QStyleOptionGroupBox; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionGroupBox (); } class QStyleOptionHeader; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionHeader (); } class QStyleOptionMenuItem; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionMenuItem (); } class QStyleOptionProgressBar; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionProgressBar (); } class QStyleOptionRubberBand; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionRubberBand (); } class QStyleOptionSizeGrip; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionSizeGrip (); } class QStyleOptionSlider; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionSlider (); } class QStyleOptionSpinBox; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionSpinBox (); } class QStyleOptionTab; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionTab (); } class QStyleOptionTabBarBase; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionTabBarBase (); } class QStyleOptionTabWidgetFrame; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionTabWidgetFrame (); } class QStyleOptionTitleBar; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionTitleBar (); } class QStyleOptionToolBar; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionToolBar (); } class QStyleOptionToolBox; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionToolBox (); } class QStyleOptionToolButton; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionToolButton (); } class QStyleOptionViewItem; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyleOptionViewItem (); } class QStylePainter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStylePainter (); } class QStylePlugin; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStylePlugin (); } class QStyledItemDelegate; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QStyledItemDelegate (); } class QSwipeGesture; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSwipeGesture (); } class QSystemTrayIcon; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QSystemTrayIcon (); } class QTabBar; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTabBar (); } class QTabWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTabWidget (); } class QTableView; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTableView (); } class QTableWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTableWidget (); } class QTableWidgetItem; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTableWidgetItem (); } class QTableWidgetSelectionRange; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTableWidgetSelectionRange (); } class QTapAndHoldGesture; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTapAndHoldGesture (); } class QTapGesture; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTapGesture (); } class QTextBrowser; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTextBrowser (); } class QTextEdit; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTextEdit (); } class QTimeEdit; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTimeEdit (); } class QToolBar; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QToolBar (); } class QToolBox; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QToolBox (); } class QToolButton; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QToolButton (); } class QToolTip; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QToolTip (); } class QTreeView; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTreeView (); } class QTreeWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTreeWidget (); } class QTreeWidgetItem; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTreeWidgetItem (); } class QTreeWidgetItemIterator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QTreeWidgetItemIterator (); } class QUndoCommand; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QUndoCommand (); } class QUndoGroup; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QUndoGroup (); } class QUndoStack; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QUndoStack (); } class QUndoView; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QUndoView (); } class QVBoxLayout; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QVBoxLayout (); } class QWhatsThis; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QWhatsThis (); } class QWidget; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QWidget (); } class QWidgetAction; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QWidgetAction (); } class QWidgetItem; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QWidgetItem (); } class QWizard; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QWizard (); } class QWizardPage; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTWIDGETS_PUBLIC gsi::Class &qtdecl_QWizardPage (); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc index b76aff90d..e1b17b1bc 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc index 8cf66532f..f33e326a9 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc index bb57a6951..4b54a5b93 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc index 12cb6291a..49cde5317 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc index fdec72044..ce7b7989a 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc @@ -50,7 +50,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc index 134092ac4..4ab94bb39 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc index 17c1562a7..8ada43f63 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc index b66113b5b..f1e59288e 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc index 8f9553393..52c6265fa 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc index 934d826bf..cef7ffc22 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomImplementation.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomImplementation.cc index 13e52763f..1ea476b73 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomImplementation.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomImplementation.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNamedNodeMap.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNamedNodeMap.cc index 9bc442377..ce271725e 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNamedNodeMap.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNamedNodeMap.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNode.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNode.cc index ad796d31e..ec50c8b80 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNode.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNode.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNodeList.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNodeList.cc index 2e5114fa7..b7be24acf 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNodeList.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNodeList.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc index b3a7fb55a..a8d72894e 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc index fc8a2875a..c5058affe 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc index bd065f279..2e69d9845 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc @@ -46,7 +46,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlAttributes.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlAttributes.cc index ef324747a..1344a2d9f 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlAttributes.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlAttributes.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc index f866b360f..8bd4ed223 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc @@ -32,7 +32,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc index e7b711ebc..da59ce4cf 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc index ef11a494d..dc299b211 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc index 99688a527..04548a09e 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc @@ -33,7 +33,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlEntityResolver.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlEntityResolver.cc index be3689b90..6f142165c 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlEntityResolver.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlEntityResolver.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc index 17c6845d6..772ad3aed 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc index f194ad5f5..32593dc3b 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc index 1f53e25b2..abb33be35 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlLocator.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlLocator.cc index be8874235..daf6edd7a 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlLocator.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlLocator.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlNamespaceSupport.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlNamespaceSupport.cc index fe4e70d5d..b7e988a8c 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlNamespaceSupport.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlNamespaceSupport.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlParseException.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlParseException.cc index 8ffd7919a..b3959a9a8 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlParseException.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlParseException.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlReader.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlReader.cc index 4d777082e..9b77a1778 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlReader.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlReader.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc index f8e249c90..09544d56d 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlCommon.h" -#include "gsiDeclQtXmlTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQtXmlTypeTraits.h b/src/gsiqt/qt5/QtXml/gsiDeclQtXmlTypeTraits.h deleted file mode 100644 index 94a714a9e..000000000 --- a/src/gsiqt/qt5/QtXml/gsiDeclQtXmlTypeTraits.h +++ /dev/null @@ -1,1847 +0,0 @@ - -/* - - 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 generated/gsiDeclQtXmlTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtXmlTypeTraits -#define _HDR_gsiDeclQtXmlTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDomAttr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomCDATASection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomCharacterData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomComment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomDocumentFragment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomDocumentType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomElement; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomEntity; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomEntityReference; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomImplementation; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomNamedNodeMap; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomNode; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomNodeList; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomNotation; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomProcessingInstruction; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDomText; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlAttributes_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlContentHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlContentHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlDTDHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlDTDHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlDeclHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlDeclHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlDefaultHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlDefaultHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlErrorHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlErrorHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlInputSource; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlInputSource_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlLexicalHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlLexicalHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlLocator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlLocator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlNamespaceSupport; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlParseException; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlSimpleReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlSimpleReader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtXml/gsiQtExternals.h b/src/gsiqt/qt5/QtXml/gsiQtExternals.h index 9c0a651d8..5ae98c145 100644 --- a/src/gsiqt/qt5/QtXml/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtXml/gsiQtExternals.h @@ -35,239 +35,126 @@ class QDomAttr; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomAttr (); } class QDomCDATASection; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomCDATASection (); } class QDomCharacterData; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomCharacterData (); } class QDomComment; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomComment (); } class QDomDocument; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomDocument (); } class QDomDocumentFragment; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomDocumentFragment (); } class QDomDocumentType; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomDocumentType (); } class QDomElement; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomElement (); } class QDomEntity; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomEntity (); } class QDomEntityReference; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomEntityReference (); } class QDomImplementation; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomImplementation (); } class QDomNamedNodeMap; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomNamedNodeMap (); } class QDomNode; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomNode (); } class QDomNodeList; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomNodeList (); } class QDomNotation; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomNotation (); } class QDomProcessingInstruction; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomProcessingInstruction (); } class QDomText; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QDomText (); } class QXmlAttributes; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlAttributes (); } class QXmlContentHandler; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlContentHandler (); } class QXmlDTDHandler; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlDTDHandler (); } class QXmlDeclHandler; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlDeclHandler (); } class QXmlDefaultHandler; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlDefaultHandler (); } class QXmlEntityResolver; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlEntityResolver (); } class QXmlErrorHandler; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlErrorHandler (); } class QXmlInputSource; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlInputSource (); } class QXmlLexicalHandler; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlLexicalHandler (); } class QXmlLocator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlLocator (); } class QXmlNamespaceSupport; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlNamespaceSupport (); } class QXmlParseException; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlParseException (); } class QXmlReader; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlReader (); } class QXmlSimpleReader; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTXML_PUBLIC gsi::Class &qtdecl_QXmlSimpleReader (); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc index 983aab7c6..eefd49e55 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc @@ -38,7 +38,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc index a8318b28a..50f54efde 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlNodeModel.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlNodeModel.cc index c257f7b99..fb3a6831a 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlNodeModel.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlNodeModel.cc @@ -35,7 +35,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc index ddb7f83b1..dbf4e1303 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc index fa3635ced..a95b61e4a 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSourceLocation.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSourceLocation.cc index caca80d98..6e522eb5b 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSourceLocation.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSourceLocation.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc index 4ac22a44c..ff407ca30 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlItem.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlItem.cc index 902a143b6..0f6d196d3 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlItem.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlItem.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlName.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlName.cc index 125660e71..7f1350cba 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlName.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlName.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNamePool.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNamePool.cc index 50e7b4c6e..ee5c8a985 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNamePool.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNamePool.cc @@ -30,7 +30,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNodeModelIndex.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNodeModelIndex.cc index bb73a24ec..6d0df6652 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNodeModelIndex.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNodeModelIndex.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlQuery.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlQuery.cc index 61e1aa2cd..1401ccbd8 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlQuery.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlQuery.cc @@ -40,7 +40,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlResultItems.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlResultItems.cc index 1b8b89e2b..87acbf304 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlResultItems.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlResultItems.cc @@ -31,7 +31,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchema.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchema.cc index 5d66581f7..a373f1b78 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchema.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchema.cc @@ -36,7 +36,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchemaValidator.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchemaValidator.cc index 0ab66cf60..d0c63bca8 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchemaValidator.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchemaValidator.cc @@ -37,7 +37,6 @@ #include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc index 6f5203eea..433f7f799 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc @@ -29,9 +29,9 @@ #include #include +#include #include "gsiQt.h" #include "gsiQtXmlPatternsCommon.h" -#include "gsiDeclQtXmlPatternsTypeTraits.h" #include // ----------------------------------------------------------------------- diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQtXmlPatternsTypeTraits.h b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQtXmlPatternsTypeTraits.h deleted file mode 100644 index 3a5236d5c..000000000 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQtXmlPatternsTypeTraits.h +++ /dev/null @@ -1,2100 +0,0 @@ - -/* - - 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 generated/gsiDeclQtXmlPatternsTypeTraits.h -* @brief Type traits for the Qt binding classes -* -* DO NOT EDIT THIS FILE. -* This file has been created automatically -*/ - -#ifndef _HDR_gsiDeclQtXmlPatternsTypeTraits -#define _HDR_gsiDeclQtXmlPatternsTypeTraits - -#include "gsiTypes.h" - - -class QAbstractAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractEventDispatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractEventDispatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractItemModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractMessageHandler; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractMessageHandler_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNativeEventFilter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNativeEventFilter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractNetworkCache; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractNetworkCache_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTableModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTableModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractUriResolver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractUriResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAbstractXmlNodeModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractXmlReceiver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAbstractXmlReceiver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationDriver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QAssociativeIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QAuthenticator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBasicMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QBasicTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QBuffer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QByteArrayDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QByteArrayMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QChildEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QChildEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCollator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QCollatorSortKey; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineOption; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QCommandLineParser; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QCoreApplication; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCoreApplication_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QCryptographicHash; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDataStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDateTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDebug; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDebugStateSaver; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDeferredDeleteEvent; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDeferredDeleteEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDir; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDirIterator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QDnsDomainNameRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsHostAddressRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsLookup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDnsLookup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QDnsMailExchangeRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsServiceRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDnsTextRecord; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QDynamicPropertyChangeEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QDynamicPropertyChangeEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEasingCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QElapsedTimer; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QEventLoop; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoop_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventLoopLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QEventTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QFactoryInterface; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFactoryInterface_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileDevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileDevice_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QFileInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QFileSelector; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSelector_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFileSystemWatcher_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QFinalState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHistoryState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHostAddress; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHostInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QHttpMultiPart; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHttpMultiPart_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QHttpPart; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIODevice; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QIPv6Address; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QIdentityProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QIdentityProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QItemSelection; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QItemSelectionModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QItemSelectionRange; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonArray; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonDocument; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QJsonParseError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValue; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QJsonValuePtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRef; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QJsonValueRefPtr; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLibrary; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibrary_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLibraryInfo; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QLine; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLineF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLocalServer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocalServer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocalSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QLocale; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QLockFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QLoggingCategory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -struct QMapDataBase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -struct QMapNodeBase; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMargins; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMarginsF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMessageAuthenticationCode; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QMessageLogContext; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMessageLogger; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMetaClassInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaEnum; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaMethod; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QMetaObject; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMetaProperty; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMimeData; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeData_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeDatabase; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QMimeType; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QMutex; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkAccessManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkAccessManager_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkAddressEntry; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkCacheMetaData; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkConfiguration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkConfigurationManager; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkConfigurationManager_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkCookie; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkCookieJar; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkCookieJar_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkDiskCache; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkDiskCache_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QNetworkInterface; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxy; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxyFactory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkProxyFactory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkProxyQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkReply; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkRequest; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QNetworkSession; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNetworkSession_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QNoDebug; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QObject; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QObject_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QParallelAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPauseAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPersistentModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPluginLoader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPluginLoader_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPoint; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPointF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QProcess; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QProcessEnvironment; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QPropertyAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QPropertyAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QReadLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QReadWriteLock; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRect; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRectF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegExp; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpression; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatch; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QRegularExpressionMatchIterator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QResource; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QRunnable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QRunnable_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSaveFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSaveFile_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialAnimationGroup_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSequentialIterable; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QSettings; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSettings_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSharedMemory_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalBlocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSignalMapper; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalMapper_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSignalTransition_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSimpleXmlNodeModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSize; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSizeF; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSocketNotifier; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSocketNotifier_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSortFilterProxyModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSortFilterProxyModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QSourceLocation; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSsl_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QSslCertificate; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslCertificateExtension; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslCipher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslConfiguration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslEllipticCurve; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslError; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslKey; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslPreSharedKeyAuthenticator; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSslSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStandardPaths; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QState; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QState_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStateMachine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_SignalEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QStateMachine_WrappedEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -struct QStaticPlugin; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStorageInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -struct QStringDataPtr; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QStringListModel; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringListModel_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QStringMatcher; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSysInfo; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QSystemSemaphore; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTcpServer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTcpServer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTcpSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryDir; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTemporaryFile; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextBoundaryFinder; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTextCodec; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; - typedef tl::false_tag has_public_destructor; -}; -} - -class QTextCodec_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextDecoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextEncoder; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QTextStream; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTextStream_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThread_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QThreadPool_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTime; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimeLine; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeLine_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimeZone; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -#include -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QTimer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTimerEvent; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTimerEvent_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_default_constructor; -}; -} - -class QTranslator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QTranslator_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUdpSocket; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QUrl; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QUrlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QVariantAnimation; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QVariantAnimation_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWaitCondition; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QWriteLocker; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlFormatter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlFormatter_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlItem; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlName; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlNamePool; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlNodeModelIndex; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlQuery; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlResultItems; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlResultItems_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlSchema; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlSchemaValidator; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlSerializer; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlSerializer_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - -class QXmlStreamAttribute; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamAttributes; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamEntityResolver_Adaptor; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNamespaceDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamNotationDeclaration; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamReader; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class QXmlStreamStringRef; -namespace tl { -template <> struct type_traits : public type_traits { -}; -} - -class QXmlStreamWriter; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; -} - -class Qt_Namespace; -namespace tl { -template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; -} - - -#endif diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiQtExternals.h b/src/gsiqt/qt5/QtXmlPatterns/gsiQtExternals.h index d064e7d03..8e8bedbb5 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiQtExternals.h +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiQtExternals.h @@ -35,130 +35,66 @@ class QAbstractMessageHandler; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QAbstractMessageHandler (); } class QAbstractUriResolver; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QAbstractUriResolver (); } class QAbstractXmlNodeModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QAbstractXmlNodeModel (); } class QAbstractXmlReceiver; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QAbstractXmlReceiver (); } class QSimpleXmlNodeModel; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QSimpleXmlNodeModel (); } class QSourceLocation; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QSourceLocation (); } class QXmlFormatter; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlFormatter (); } class QXmlItem; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlItem (); } class QXmlName; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlName (); } class QXmlNamePool; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlNamePool (); } class QXmlNodeModelIndex; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlNodeModelIndex (); } class QXmlQuery; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlQuery (); } class QXmlResultItems; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlResultItems (); } class QXmlSchema; -namespace tl { template <> struct type_traits : public type_traits { -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlSchema (); } class QXmlSchemaValidator; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlSchemaValidator (); } class QXmlSerializer; -namespace tl { template <> struct type_traits : public type_traits { - typedef tl::false_tag has_copy_constructor; - typedef tl::false_tag has_default_constructor; -}; } - namespace gsi { GSI_QTXMLPATTERNS_PUBLIC gsi::Class &qtdecl_QXmlSerializer (); } diff --git a/src/lay/lay/layMainWindow.cc b/src/lay/lay/layMainWindow.cc index 25bab85f3..a4a8f492f 100644 --- a/src/lay/lay/layMainWindow.cc +++ b/src/lay/lay/layMainWindow.cc @@ -798,7 +798,7 @@ static int fm_width (const QFontMetrics &fm, const QString &s) #if QT_VERSION >= 0x60000 return fm.horizontalAdvance (s); #else - return fm.width (QString::fromUtf8 (s)); + return fm.width (s); #endif } diff --git a/src/laybasic/laybasic/layNetlistBrowserModel.h b/src/laybasic/laybasic/layNetlistBrowserModel.h index c87d2cfb6..0d1d7766d 100644 --- a/src/laybasic/laybasic/layNetlistBrowserModel.h +++ b/src/laybasic/laybasic/layNetlistBrowserModel.h @@ -106,7 +106,7 @@ class NetlistModelItemData : public tl::list_node { public: - typedef tl::list::iterator iterator; + typedef tl::list::iterator iterator; NetlistModelItemData (); NetlistModelItemData (NetlistModelItemData *parent); @@ -155,8 +155,11 @@ public: bool derived_from_nets (const std::pair &np); private: + NetlistModelItemData (const NetlistModelItemData &); + NetlistModelItemData &operator= (const NetlistModelItemData &); + NetlistModelItemData *mp_parent; - tl::list m_children; + tl::list m_children; std::vector m_children_per_index; bool m_children_made; size_t m_index; diff --git a/src/tl/tl/tlList.h b/src/tl/tl/tlList.h index 0c2bec7cb..1cc4b235f 100644 --- a/src/tl/tl/tlList.h +++ b/src/tl/tl/tlList.h @@ -101,7 +101,7 @@ public: private: template friend class list_impl; - template friend class list; + template friend class list; template friend class list_iterator; template friend class reverse_list_iterator; @@ -443,9 +443,9 @@ private: * tl::list list; * list.push_back (new MyClass ()); */ -template +template ::value> class list - : public list_impl::value> + : public list_impl { public: typedef list_iterator iterator; @@ -455,17 +455,17 @@ public: typedef C value_type; - using list_impl::value>::first; - using list_impl::value>::last; - using list_impl::value>::head; - using list_impl::value>::back; + using list_impl::first; + using list_impl::last; + using list_impl::head; + using list_impl::back; list () { } - list (const list &other) : list_impl::value> (other) { } + list (const list &other) : list_impl (other) { } list &operator= (const list &other) { - list_impl::value>::operator= (other); + list_impl::operator= (other); return *this; }