mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2024-12-26 05:18:11 +03:00
13 lines
228 B
C
13 lines
228 B
C
|
#ifndef QZINT_GLOBAL_H
|
||
|
#define QZINT_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(QZINT_LIBRARY)
|
||
|
# define QZINTSHARED_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define QZINTSHARED_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // QZINT_GLOBAL_H
|