1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| // xlsxglobal.h
|
| #ifndef XLSXGLOBAL_H
| #define XLSXGLOBAL_H
|
| #include <cstdio>
| #include <string>
| #include <iostream>
|
| #include <QtGlobal>
| #include <QObject>
| #include <QString>
| #include <QVariant>
| #include <QIODevice>
| #include <QByteArray>
| #include <QStringList>
|
| #if defined(QXlsx_SHAREDLIB)
| #if defined(QXlsx_EXPORTS)
| # define QXLSX_EXPORT Q_DECL_EXPORT
| #else
| # define QXLSX_EXPORT Q_DECL_IMPORT
| #endif
| #else
| # define QXLSX_EXPORT
| #endif
|
| #define QT_BEGIN_NAMESPACE_XLSX namespace QXlsx {
| #define QT_END_NAMESPACE_XLSX }
|
| #define QXLSX_USE_NAMESPACE using namespace QXlsx;
|
| #endif // XLSXGLOBAL_H
|
|