13 lines
240 B
C
13 lines
240 B
C
|
#ifndef XYCOMFUNC_GLOBAL_H
|
||
|
#define XYCOMFUNC_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(XYCOMFUNC_LIBRARY)
|
||
|
# define XYCOMFUNC_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define XYCOMFUNC_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // XYCOMFUNC_GLOBAL_H
|