13 lines
256 B
C
13 lines
256 B
C
|
#ifndef XNUDPSERVICE_GLOBAL_H
|
||
|
#define XNUDPSERVICE_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(XNUDPSERVICE_LIBRARY)
|
||
|
# define XNUDPSERVICE_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define XNUDPSERVICE_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // XNUDPSERVICE_GLOBAL_H
|