13 lines
234 B
C
13 lines
234 B
C
#ifndef UNIONCOM_GLOBAL_H
|
|
#define UNIONCOM_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(UNIONCOM_LIBRARY)
|
|
# define UNIONCOM_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define UNIONCOM_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // UNIONCOM_GLOBAL_H
|