13 lines
252 B
C
13 lines
252 B
C
|
#ifndef SCSTWCLIENT_GLOBAL_H
|
||
|
#define SCSTWCLIENT_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(SCSTWCLIENT_LIBRARY)
|
||
|
# define SCSTWCLIENT_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define SCSTWCLIENT_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // SCSTWCLIENT_GLOBAL_H
|