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