From 9ee98a06160ee2b234e92db70eb18e128fc76e5d Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Thu, 6 Jun 2019 16:31:25 +0900 Subject: add hubtbt --- build/app/moc_file_operation.cpp | 136 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 build/app/moc_file_operation.cpp (limited to 'build/app/moc_file_operation.cpp') diff --git a/build/app/moc_file_operation.cpp b/build/app/moc_file_operation.cpp new file mode 100644 index 0000000..57e1154 --- /dev/null +++ b/build/app/moc_file_operation.cpp @@ -0,0 +1,136 @@ +/**************************************************************************** +** Meta object code from reading C++ file 'file_operation.h' +** +** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.7) +** +** WARNING! All changes made in this file will be lost! +*****************************************************************************/ + +#include "../../app/file_operation.h" +#include +#include +#if !defined(Q_MOC_OUTPUT_REVISION) +#error "The header file 'file_operation.h' doesn't include ." +#elif Q_MOC_OUTPUT_REVISION != 67 +#error "This file was generated using the moc from 5.9.7. It" +#error "cannot be used with the include files from this version of Qt." +#error "(The moc has changed too much.)" +#endif + +QT_BEGIN_MOC_NAMESPACE +QT_WARNING_PUSH +QT_WARNING_DISABLE_DEPRECATED +struct qt_meta_stringdata_File_Operation_t { + QByteArrayData data[7]; + char stringdata0[97]; +}; +#define QT_MOC_LITERAL(idx, ofs, len) \ + Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \ + qptrdiff(offsetof(qt_meta_stringdata_File_Operation_t, stringdata0) + ofs \ + - idx * sizeof(QByteArrayData)) \ + ) +static const qt_meta_stringdata_File_Operation_t qt_meta_stringdata_File_Operation = { + { +QT_MOC_LITERAL(0, 0, 14), // "File_Operation" +QT_MOC_LITERAL(1, 15, 17), // "getMapAccessToken" +QT_MOC_LITERAL(2, 33, 0), // "" +QT_MOC_LITERAL(3, 34, 11), // "getCarSpeed" +QT_MOC_LITERAL(4, 46, 16), // "getStartLatitude" +QT_MOC_LITERAL(5, 63, 17), // "getStartLongitute" +QT_MOC_LITERAL(6, 81, 15) // "getMapStyleUrls" + + }, + "File_Operation\0getMapAccessToken\0\0" + "getCarSpeed\0getStartLatitude\0" + "getStartLongitute\0getMapStyleUrls" +}; +#undef QT_MOC_LITERAL + +static const uint qt_meta_data_File_Operation[] = { + + // content: + 7, // revision + 0, // classname + 0, 0, // classinfo + 5, 14, // methods + 0, 0, // properties + 0, 0, // enums/sets + 0, 0, // constructors + 0, // flags + 0, // signalCount + + // methods: name, argc, parameters, tag, flags + 1, 0, 39, 2, 0x02 /* Public */, + 3, 0, 40, 2, 0x02 /* Public */, + 4, 0, 41, 2, 0x02 /* Public */, + 5, 0, 42, 2, 0x02 /* Public */, + 6, 0, 43, 2, 0x02 /* Public */, + + // methods: parameters + QMetaType::QString, + QMetaType::Double, + QMetaType::Double, + QMetaType::Double, + QMetaType::QString, + + 0 // eod +}; + +void File_Operation::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a) +{ + if (_c == QMetaObject::InvokeMetaMethod) { + File_Operation *_t = static_cast(_o); + Q_UNUSED(_t) + switch (_id) { + case 0: { QString _r = _t->getMapAccessToken(); + if (_a[0]) *reinterpret_cast< QString*>(_a[0]) = std::move(_r); } break; + case 1: { double _r = _t->getCarSpeed(); + if (_a[0]) *reinterpret_cast< double*>(_a[0]) = std::move(_r); } break; + case 2: { double _r = _t->getStartLatitude(); + if (_a[0]) *reinterpret_cast< double*>(_a[0]) = std::move(_r); } break; + case 3: { double _r = _t->getStartLongitute(); + if (_a[0]) *reinterpret_cast< double*>(_a[0]) = std::move(_r); } break; + case 4: { QString _r = _t->getMapStyleUrls(); + if (_a[0]) *reinterpret_cast< QString*>(_a[0]) = std::move(_r); } break; + default: ; + } + } +} + +const QMetaObject File_Operation::staticMetaObject = { + { &QObject::staticMetaObject, qt_meta_stringdata_File_Operation.data, + qt_meta_data_File_Operation, qt_static_metacall, nullptr, nullptr} +}; + + +const QMetaObject *File_Operation::metaObject() const +{ + return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject; +} + +void *File_Operation::qt_metacast(const char *_clname) +{ + if (!_clname) return nullptr; + if (!strcmp(_clname, qt_meta_stringdata_File_Operation.stringdata0)) + return static_cast(this); + return QObject::qt_metacast(_clname); +} + +int File_Operation::qt_metacall(QMetaObject::Call _c, int _id, void **_a) +{ + _id = QObject::qt_metacall(_c, _id, _a); + if (_id < 0) + return _id; + if (_c == QMetaObject::InvokeMetaMethod) { + if (_id < 5) + qt_static_metacall(this, _c, _id, _a); + _id -= 5; + } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) { + if (_id < 5) + *reinterpret_cast(_a[0]) = -1; + _id -= 5; + } + return _id; +} +QT_WARNING_POP +QT_END_MOC_NAMESPACE -- cgit 1.2.3-korg