source: mmcs/moc_formexportreport.cpp @ dfabbb4

Last change on this file since dfabbb4 was e62517a, checked in by rudmanmrrod <rudman22@…>, 8 years ago

Migrado el proyecto a la versión 5 de Qt, agregado primer boceto del PDF

  • Property mode set to 100644
File size: 4.3 KB
Line 
1/****************************************************************************
2** Meta object code from reading C++ file 'formexportreport.h'
3**
4** Created by: The Qt Meta Object Compiler version 67 (Qt 5.3.2)
5**
6** WARNING! All changes made in this file will be lost!
7*****************************************************************************/
8
9#include "formexportreport.h"
10#include <QtCore/qbytearray.h>
11#include <QtCore/qmetatype.h>
12#if !defined(Q_MOC_OUTPUT_REVISION)
13#error "The header file 'formexportreport.h' doesn't include <QObject>."
14#elif Q_MOC_OUTPUT_REVISION != 67
15#error "This file was generated using the moc from 5.3.2. It"
16#error "cannot be used with the include files from this version of Qt."
17#error "(The moc has changed too much.)"
18#endif
19
20QT_BEGIN_MOC_NAMESPACE
21struct qt_meta_stringdata_FormExportReport_t {
22    QByteArrayData data[5];
23    char stringdata[52];
24};
25#define QT_MOC_LITERAL(idx, ofs, len) \
26    Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
27    qptrdiff(offsetof(qt_meta_stringdata_FormExportReport_t, stringdata) + ofs \
28        - idx * sizeof(QByteArrayData)) \
29    )
30static const qt_meta_stringdata_FormExportReport_t qt_meta_stringdata_FormExportReport = {
31    {
32QT_MOC_LITERAL(0, 0, 16),
33QT_MOC_LITERAL(1, 17, 12),
34QT_MOC_LITERAL(2, 30, 0),
35QT_MOC_LITERAL(3, 31, 8),
36QT_MOC_LITERAL(4, 40, 11)
37    },
38    "FormExportReport\0formAccepted\0\0slotLoad\0"
39    "slotClicked"
40};
41#undef QT_MOC_LITERAL
42
43static const uint qt_meta_data_FormExportReport[] = {
44
45 // content:
46       7,       // revision
47       0,       // classname
48       0,    0, // classinfo
49       3,   14, // methods
50       0,    0, // properties
51       0,    0, // enums/sets
52       0,    0, // constructors
53       0,       // flags
54       1,       // signalCount
55
56 // signals: name, argc, parameters, tag, flags
57       1,    1,   29,    2, 0x06 /* Public */,
58
59 // slots: name, argc, parameters, tag, flags
60       3,    0,   32,    2, 0x0a /* Public */,
61       4,    0,   33,    2, 0x0a /* Public */,
62
63 // signals: parameters
64    QMetaType::Void, QMetaType::QString,    2,
65
66 // slots: parameters
67    QMetaType::Void,
68    QMetaType::Void,
69
70       0        // eod
71};
72
73void FormExportReport::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
74{
75    if (_c == QMetaObject::InvokeMetaMethod) {
76        FormExportReport *_t = static_cast<FormExportReport *>(_o);
77        switch (_id) {
78        case 0: _t->formAccepted((*reinterpret_cast< QString(*)>(_a[1]))); break;
79        case 1: _t->slotLoad(); break;
80        case 2: _t->slotClicked(); break;
81        default: ;
82        }
83    } else if (_c == QMetaObject::IndexOfMethod) {
84        int *result = reinterpret_cast<int *>(_a[0]);
85        void **func = reinterpret_cast<void **>(_a[1]);
86        {
87            typedef void (FormExportReport::*_t)(QString );
88            if (*reinterpret_cast<_t *>(func) == static_cast<_t>(&FormExportReport::formAccepted)) {
89                *result = 0;
90            }
91        }
92    }
93}
94
95const QMetaObject FormExportReport::staticMetaObject = {
96    { &QWidget::staticMetaObject, qt_meta_stringdata_FormExportReport.data,
97      qt_meta_data_FormExportReport,  qt_static_metacall, 0, 0}
98};
99
100
101const QMetaObject *FormExportReport::metaObject() const
102{
103    return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
104}
105
106void *FormExportReport::qt_metacast(const char *_clname)
107{
108    if (!_clname) return 0;
109    if (!strcmp(_clname, qt_meta_stringdata_FormExportReport.stringdata))
110        return static_cast<void*>(const_cast< FormExportReport*>(this));
111    return QWidget::qt_metacast(_clname);
112}
113
114int FormExportReport::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
115{
116    _id = QWidget::qt_metacall(_c, _id, _a);
117    if (_id < 0)
118        return _id;
119    if (_c == QMetaObject::InvokeMetaMethod) {
120        if (_id < 3)
121            qt_static_metacall(this, _c, _id, _a);
122        _id -= 3;
123    } else if (_c == QMetaObject::RegisterMethodArgumentMetaType) {
124        if (_id < 3)
125            *reinterpret_cast<int*>(_a[0]) = -1;
126        _id -= 3;
127    }
128    return _id;
129}
130
131// SIGNAL 0
132void FormExportReport::formAccepted(QString _t1)
133{
134    void *_a[] = { 0, const_cast<void*>(reinterpret_cast<const void*>(&_t1)) };
135    QMetaObject::activate(this, &staticMetaObject, 0, _a);
136}
137QT_END_MOC_NAMESPACE
Note: See TracBrowser for help on using the repository browser.