13 lines
230 B
Plaintext
13 lines
230 B
Plaintext
|
#ifndef TEMPLATE_GLOBAL_H
|
||
|
#define TEMPLATE_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(TEMPLATE_LIBRARY)
|
||
|
#define TEMPLATE_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
#define TEMPLATE_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // TEMPLATE_GLOBAL_H
|