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