You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
600 B
34 lines
600 B
2 years ago
|
// 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
|