mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
before task parser
This commit is contained in:
@@ -22,8 +22,8 @@ QT_BEGIN_MOC_NAMESPACE
|
||||
QT_WARNING_PUSH
|
||||
QT_WARNING_DISABLE_DEPRECATED
|
||||
struct qt_meta_stringdata_InterfaceDataBaseLMS_t {
|
||||
QByteArrayData data[1];
|
||||
char stringdata0[21];
|
||||
QByteArrayData data[4];
|
||||
char stringdata0[52];
|
||||
};
|
||||
#define QT_MOC_LITERAL(idx, ofs, len) \
|
||||
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
|
||||
@@ -32,10 +32,14 @@ struct qt_meta_stringdata_InterfaceDataBaseLMS_t {
|
||||
)
|
||||
static const qt_meta_stringdata_InterfaceDataBaseLMS_t qt_meta_stringdata_InterfaceDataBaseLMS = {
|
||||
{
|
||||
QT_MOC_LITERAL(0, 0, 20) // "InterfaceDataBaseLMS"
|
||||
QT_MOC_LITERAL(0, 0, 20), // "InterfaceDataBaseLMS"
|
||||
QT_MOC_LITERAL(1, 21, 20), // "slot_LanguageChanged"
|
||||
QT_MOC_LITERAL(2, 42, 0), // ""
|
||||
QT_MOC_LITERAL(3, 43, 8) // "language"
|
||||
|
||||
},
|
||||
"InterfaceDataBaseLMS"
|
||||
"InterfaceDataBaseLMS\0slot_LanguageChanged\0"
|
||||
"\0language"
|
||||
};
|
||||
#undef QT_MOC_LITERAL
|
||||
|
||||
@@ -45,26 +49,36 @@ static const uint qt_meta_data_InterfaceDataBaseLMS[] = {
|
||||
8, // revision
|
||||
0, // classname
|
||||
0, 0, // classinfo
|
||||
0, 0, // methods
|
||||
1, 14, // methods
|
||||
0, 0, // properties
|
||||
0, 0, // enums/sets
|
||||
0, 0, // constructors
|
||||
0, // flags
|
||||
0, // signalCount
|
||||
|
||||
// slots: name, argc, parameters, tag, flags
|
||||
1, 1, 19, 2, 0x0a /* Public */,
|
||||
|
||||
// slots: parameters
|
||||
QMetaType::Void, QMetaType::QString, 3,
|
||||
|
||||
0 // eod
|
||||
};
|
||||
|
||||
void InterfaceDataBaseLMS::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
|
||||
{
|
||||
Q_UNUSED(_o);
|
||||
Q_UNUSED(_id);
|
||||
Q_UNUSED(_c);
|
||||
Q_UNUSED(_a);
|
||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||
auto *_t = static_cast<InterfaceDataBaseLMS *>(_o);
|
||||
Q_UNUSED(_t)
|
||||
switch (_id) {
|
||||
case 0: _t->slot_LanguageChanged((*reinterpret_cast< QString(*)>(_a[1]))); break;
|
||||
default: ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
QT_INIT_METAOBJECT const QMetaObject InterfaceDataBaseLMS::staticMetaObject = { {
|
||||
QMetaObject::SuperData::link<QObject::staticMetaObject>(),
|
||||
QMetaObject::SuperData::link<QWidget::staticMetaObject>(),
|
||||
qt_meta_stringdata_InterfaceDataBaseLMS.data,
|
||||
qt_meta_data_InterfaceDataBaseLMS,
|
||||
qt_static_metacall,
|
||||
@@ -85,12 +99,23 @@ void *InterfaceDataBaseLMS::qt_metacast(const char *_clname)
|
||||
return static_cast<void*>(this);
|
||||
if (!strcmp(_clname, "DataBaseLMS"))
|
||||
return static_cast< DataBaseLMS*>(this);
|
||||
return QObject::qt_metacast(_clname);
|
||||
return QWidget::qt_metacast(_clname);
|
||||
}
|
||||
|
||||
int InterfaceDataBaseLMS::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
|
||||
{
|
||||
_id = QObject::qt_metacall(_c, _id, _a);
|
||||
_id = QWidget::qt_metacall(_c, _id, _a);
|
||||
if (_id < 0)
|
||||
return _id;
|
||||
if (_c == QMetaObject::InvokeMetaMethod) {
|
||||
if (_id < 1)
|
||||
qt_static_metacall(this, _c, _id, _a);
|
||||
_id -= 1;
|
||||
} else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
|
||||
if (_id < 1)
|
||||
*reinterpret_cast<int*>(_a[0]) = -1;
|
||||
_id -= 1;
|
||||
}
|
||||
return _id;
|
||||
}
|
||||
QT_WARNING_POP
|
||||
|
||||
Reference in New Issue
Block a user