Перед внедрением списочной модели БД в GUI

This commit is contained in:
krivoshein
2024-12-10 10:27:00 +03:00
parent e6da40c4e7
commit 4556c07fc9
96 changed files with 1044 additions and 444 deletions

View File

@@ -23,8 +23,8 @@ QT_BEGIN_MOC_NAMESPACE
QT_WARNING_PUSH
QT_WARNING_DISABLE_DEPRECATED
struct qt_meta_stringdata_RecognizeSystem_t {
QByteArrayData data[24];
char stringdata0[341];
QByteArrayData data[28];
char stringdata0[395];
};
#define QT_MOC_LITERAL(idx, ofs, len) \
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
@@ -54,9 +54,13 @@ QT_MOC_LITERAL(17, 223, 12), // "serverDeAuth"
QT_MOC_LITERAL(18, 236, 18), // "sigAnswerQueryToDB"
QT_MOC_LITERAL(19, 255, 18), // "QList<Instructor>*"
QT_MOC_LITERAL(20, 274, 15), // "listInstructors"
QT_MOC_LITERAL(21, 290, 25), // "sigSocketWaitForReadyRead"
QT_MOC_LITERAL(22, 316, 8), // "waitTime"
QT_MOC_LITERAL(23, 325, 15) // "sigStartCompare"
QT_MOC_LITERAL(21, 290, 15), // "QList<Trainee>*"
QT_MOC_LITERAL(22, 306, 12), // "listTrainees"
QT_MOC_LITERAL(23, 319, 13), // "QList<Group>*"
QT_MOC_LITERAL(24, 333, 10), // "listGroups"
QT_MOC_LITERAL(25, 344, 25), // "sigSocketWaitForReadyRead"
QT_MOC_LITERAL(26, 370, 8), // "waitTime"
QT_MOC_LITERAL(27, 379, 15) // "sigStartCompare"
},
"RecognizeSystem\0sigUpdateBytesAvailable\0"
@@ -67,8 +71,9 @@ QT_MOC_LITERAL(23, 325, 15) // "sigStartCompare"
"sigDeAuth\0ServerDeAuthorization*\0"
"serverDeAuth\0sigAnswerQueryToDB\0"
"QList<Instructor>*\0listInstructors\0"
"sigSocketWaitForReadyRead\0waitTime\0"
"sigStartCompare"
"QList<Trainee>*\0listTrainees\0QList<Group>*\0"
"listGroups\0sigSocketWaitForReadyRead\0"
"waitTime\0sigStartCompare"
};
#undef QT_MOC_LITERAL
@@ -94,9 +99,9 @@ static const uint qt_meta_data_RecognizeSystem[] = {
11, 0, 82, 2, 0x06 /* Public */,
12, 1, 83, 2, 0x06 /* Public */,
15, 1, 86, 2, 0x06 /* Public */,
18, 1, 89, 2, 0x06 /* Public */,
21, 1, 92, 2, 0x06 /* Public */,
23, 0, 95, 2, 0x06 /* Public */,
18, 3, 89, 2, 0x06 /* Public */,
25, 1, 96, 2, 0x06 /* Public */,
27, 0, 99, 2, 0x06 /* Public */,
// signals: parameters
QMetaType::Void,
@@ -107,8 +112,8 @@ static const uint qt_meta_data_RecognizeSystem[] = {
QMetaType::Void,
QMetaType::Void, 0x80000000 | 13, 14,
QMetaType::Void, 0x80000000 | 16, 17,
QMetaType::Void, 0x80000000 | 19, 20,
QMetaType::Void, QMetaType::Int, 22,
QMetaType::Void, 0x80000000 | 19, 0x80000000 | 21, 0x80000000 | 23, 20, 22, 24,
QMetaType::Void, QMetaType::Int, 26,
QMetaType::Void,
0 // eod
@@ -128,7 +133,7 @@ void RecognizeSystem::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int
case 5: _t->sigServerBlocked(); break;
case 6: _t->sigAuth((*reinterpret_cast< ServerAuthorization*(*)>(_a[1]))); break;
case 7: _t->sigDeAuth((*reinterpret_cast< ServerDeAuthorization*(*)>(_a[1]))); break;
case 8: _t->sigAnswerQueryToDB((*reinterpret_cast< QList<Instructor>*(*)>(_a[1]))); break;
case 8: _t->sigAnswerQueryToDB((*reinterpret_cast< QList<Instructor>*(*)>(_a[1])),(*reinterpret_cast< QList<Trainee>*(*)>(_a[2])),(*reinterpret_cast< QList<Group>*(*)>(_a[3]))); break;
case 9: _t->sigSocketWaitForReadyRead((*reinterpret_cast< int(*)>(_a[1]))); break;
case 10: _t->sigStartCompare(); break;
default: ;
@@ -192,7 +197,7 @@ void RecognizeSystem::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int
}
}
{
using _t = void (RecognizeSystem::*)(QList<Instructor> * );
using _t = void (RecognizeSystem::*)(QList<Instructor> * , QList<Trainee> * , QList<Group> * );
if (*reinterpret_cast<_t *>(_a[1]) == static_cast<_t>(&RecognizeSystem::sigAnswerQueryToDB)) {
*result = 8;
return;
@@ -308,9 +313,9 @@ void RecognizeSystem::sigDeAuth(ServerDeAuthorization * _t1)
}
// SIGNAL 8
void RecognizeSystem::sigAnswerQueryToDB(QList<Instructor> * _t1)
void RecognizeSystem::sigAnswerQueryToDB(QList<Instructor> * _t1, QList<Trainee> * _t2, QList<Group> * _t3)
{
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))) };
void *_a[] = { nullptr, const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t1))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t2))), const_cast<void*>(reinterpret_cast<const void*>(std::addressof(_t3))) };
QMetaObject::activate(this, &staticMetaObject, 8, _a);
}