13 lines
246 B
C
13 lines
246 B
C
#ifndef BLLASERLIB_GLOBAL_H
|
|
#define BLLASERLIB_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(BLLASERLIB_LIBRARY)
|
|
# define BLLASERLIB_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define BLLASERLIB_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // BLLASERLIB_GLOBAL_H
|