blob: 59be5a40c1c44e324ccb8f4a0e72153e6e027c21 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef PRINTING_GLOBAL_H
#define PRINTING_GLOBAL_H
#include <QtCore/qglobal.h>
#if defined(PRINTING_LIBRARY)
# define PRINTINGSHARED_EXPORT Q_DECL_EXPORT
#else
# define PRINTINGSHARED_EXPORT Q_DECL_IMPORT
#endif
#endif // PRINTING_GLOBAL_H
|