13 lines
214 B
C
13 lines
214 B
C
|
#ifndef LOGIN_GLOBAL_H
|
||
|
#define LOGIN_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(LOGIN_LIBRARY)
|
||
|
# define LOGIN_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define LOGIN_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // LOGIN_GLOBAL_H
|