CuteLogger
Fast and simple logging solution for Qt based applications
moc_qmlview.cpp
1/****************************************************************************
2** Meta object code from reading C++ file 'qmlview.h'
3**
4** Created by: The Qt Meta Object Compiler version 69 (Qt 6.10.2)
5**
6** WARNING! All changes made in this file will be lost!
7*****************************************************************************/
8
9#include "../../../../src/qmltypes/qmlview.h"
10#include <QtCore/qmetatype.h>
11
12#include <QtCore/qtmochelpers.h>
13
14#include <memory>
15
16
17#include <QtCore/qxptype_traits.h>
18#if !defined(Q_MOC_OUTPUT_REVISION)
19#error "The header file 'qmlview.h' doesn't include <QObject>."
20#elif Q_MOC_OUTPUT_REVISION != 69
21#error "This file was generated using the moc from 6.10.2. It"
22#error "cannot be used with the include files from this version of Qt."
23#error "(The moc has changed too much.)"
24#endif
25
26#ifndef Q_CONSTINIT
27#define Q_CONSTINIT
28#endif
29
30QT_WARNING_PUSH
31QT_WARNING_DISABLE_DEPRECATED
32QT_WARNING_DISABLE_GCC("-Wuseless-cast")
33namespace {
34struct qt_meta_tag_ZN7QmlViewE_t {};
35} // unnamed namespace
36
37template <> constexpr inline auto QmlView::qt_create_metaobjectdata<qt_meta_tag_ZN7QmlViewE_t>()
38{
39 namespace QMC = QtMocConstants;
40 QtMocHelpers::StringRefStorage qt_stringData {
41 "QmlView",
42 "pos",
43 "QPoint",
44 ""
45 };
46
47 QtMocHelpers::UintData qt_methods {
48 // Method 'pos'
49 QtMocHelpers::MethodData<QPoint()>(1, 3, QMC::AccessPublic, 0x80000000 | 2),
50 };
51 QtMocHelpers::UintData qt_properties {
52 };
53 QtMocHelpers::UintData qt_enums {
54 };
55 return QtMocHelpers::metaObjectData<QmlView, qt_meta_tag_ZN7QmlViewE_t>(QMC::MetaObjectFlag{}, qt_stringData,
56 qt_methods, qt_properties, qt_enums);
57}
58Q_CONSTINIT const QMetaObject QmlView::staticMetaObject = { {
59 QMetaObject::SuperData::link<QObject::staticMetaObject>(),
60 qt_staticMetaObjectStaticContent<qt_meta_tag_ZN7QmlViewE_t>.stringdata,
61 qt_staticMetaObjectStaticContent<qt_meta_tag_ZN7QmlViewE_t>.data,
62 qt_static_metacall,
63 nullptr,
64 qt_staticMetaObjectRelocatingContent<qt_meta_tag_ZN7QmlViewE_t>.metaTypes,
65 nullptr
66} };
67
68void QmlView::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
69{
70 auto *_t = static_cast<QmlView *>(_o);
71 if (_c == QMetaObject::InvokeMetaMethod) {
72 switch (_id) {
73 case 0: { QPoint _r = _t->pos();
74 if (_a[0]) *reinterpret_cast<QPoint*>(_a[0]) = std::move(_r); } break;
75 default: ;
76 }
77 }
78}
79
80const QMetaObject *QmlView::metaObject() const
81{
82 return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
83}
84
85void *QmlView::qt_metacast(const char *_clname)
86{
87 if (!_clname) return nullptr;
88 if (!strcmp(_clname, qt_staticMetaObjectStaticContent<qt_meta_tag_ZN7QmlViewE_t>.strings))
89 return static_cast<void*>(this);
90 return QObject::qt_metacast(_clname);
91}
92
93int QmlView::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
94{
95 _id = QObject::qt_metacall(_c, _id, _a);
96 if (_id < 0)
97 return _id;
98 if (_c == QMetaObject::InvokeMetaMethod) {
99 if (_id < 1)
100 qt_static_metacall(this, _c, _id, _a);
101 _id -= 1;
102 }
103 if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
104 if (_id < 1)
105 *reinterpret_cast<QMetaType *>(_a[0]) = QMetaType();
106 _id -= 1;
107 }
108 return _id;
109}
110QT_WARNING_POP