Skip to content

Commit 5aac667

Browse files
t
1 parent 7c3ec60 commit 5aac667

File tree

15 files changed

+2371
-4
lines changed

15 files changed

+2371
-4
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
QMAKE_CXX.QT_COMPILER_STDCXX = 201402L
2+
QMAKE_CXX.QMAKE_GCC_MAJOR_VERSION = 9
3+
QMAKE_CXX.QMAKE_GCC_MINOR_VERSION = 4
4+
QMAKE_CXX.QMAKE_GCC_PATCH_VERSION = 0
5+
QMAKE_CXX.COMPILER_MACROS = \
6+
QT_COMPILER_STDCXX \
7+
QMAKE_GCC_MAJOR_VERSION \
8+
QMAKE_GCC_MINOR_VERSION \
9+
QMAKE_GCC_PATCH_VERSION
10+
QMAKE_CXX.INCDIRS = \
11+
/usr/include/c++/9 \
12+
/usr/include/x86_64-linux-gnu/c++/9 \
13+
/usr/include/c++/9/backward \
14+
/usr/lib/gcc/x86_64-linux-gnu/9/include \
15+
/usr/local/include \
16+
/usr/include/x86_64-linux-gnu \
17+
/usr/include
18+
QMAKE_CXX.LIBDIRS = \
19+
/usr/lib/gcc/x86_64-linux-gnu/9 \
20+
/usr/lib/x86_64-linux-gnu \
21+
/usr/lib \
22+
/lib/x86_64-linux-gnu \
23+
/lib

build-qt_dragdrop-unknown-Debug/Makefile

Lines changed: 438 additions & 0 deletions
Large diffs are not rendered by default.
848 KB
Binary file not shown.
595 KB
Binary file not shown.
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
/****************************************************************************
2+
** Meta object code from reading C++ file 'mainwindow.h'
3+
**
4+
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.12.8)
5+
**
6+
** WARNING! All changes made in this file will be lost!
7+
*****************************************************************************/
8+
9+
#include "../qt_dragdrop/mainwindow.h"
10+
#include <QtCore/qbytearray.h>
11+
#include <QtCore/qmetatype.h>
12+
#if !defined(Q_MOC_OUTPUT_REVISION)
13+
#error "The header file 'mainwindow.h' doesn't include <QObject>."
14+
#elif Q_MOC_OUTPUT_REVISION != 67
15+
#error "This file was generated using the moc from 5.12.8. 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+
20+
QT_BEGIN_MOC_NAMESPACE
21+
QT_WARNING_PUSH
22+
QT_WARNING_DISABLE_DEPRECATED
23+
struct qt_meta_stringdata_MainWindow_t {
24+
QByteArrayData data[1];
25+
char stringdata0[11];
26+
};
27+
#define QT_MOC_LITERAL(idx, ofs, len) \
28+
Q_STATIC_BYTE_ARRAY_DATA_HEADER_INITIALIZER_WITH_OFFSET(len, \
29+
qptrdiff(offsetof(qt_meta_stringdata_MainWindow_t, stringdata0) + ofs \
30+
- idx * sizeof(QByteArrayData)) \
31+
)
32+
static const qt_meta_stringdata_MainWindow_t qt_meta_stringdata_MainWindow = {
33+
{
34+
QT_MOC_LITERAL(0, 0, 10) // "MainWindow"
35+
36+
},
37+
"MainWindow"
38+
};
39+
#undef QT_MOC_LITERAL
40+
41+
static const uint qt_meta_data_MainWindow[] = {
42+
43+
// content:
44+
8, // revision
45+
0, // classname
46+
0, 0, // classinfo
47+
0, 0, // methods
48+
0, 0, // properties
49+
0, 0, // enums/sets
50+
0, 0, // constructors
51+
0, // flags
52+
0, // signalCount
53+
54+
0 // eod
55+
};
56+
57+
void MainWindow::qt_static_metacall(QObject *_o, QMetaObject::Call _c, int _id, void **_a)
58+
{
59+
Q_UNUSED(_o);
60+
Q_UNUSED(_id);
61+
Q_UNUSED(_c);
62+
Q_UNUSED(_a);
63+
}
64+
65+
QT_INIT_METAOBJECT const QMetaObject MainWindow::staticMetaObject = { {
66+
&QMainWindow::staticMetaObject,
67+
qt_meta_stringdata_MainWindow.data,
68+
qt_meta_data_MainWindow,
69+
qt_static_metacall,
70+
nullptr,
71+
nullptr
72+
} };
73+
74+
75+
const QMetaObject *MainWindow::metaObject() const
76+
{
77+
return QObject::d_ptr->metaObject ? QObject::d_ptr->dynamicMetaObject() : &staticMetaObject;
78+
}
79+
80+
void *MainWindow::qt_metacast(const char *_clname)
81+
{
82+
if (!_clname) return nullptr;
83+
if (!strcmp(_clname, qt_meta_stringdata_MainWindow.stringdata0))
84+
return static_cast<void*>(this);
85+
return QMainWindow::qt_metacast(_clname);
86+
}
87+
88+
int MainWindow::qt_metacall(QMetaObject::Call _c, int _id, void **_a)
89+
{
90+
_id = QMainWindow::qt_metacall(_c, _id, _a);
91+
return _id;
92+
}
93+
QT_WARNING_POP
94+
QT_END_MOC_NAMESPACE
Binary file not shown.

0 commit comments

Comments
 (0)