23 lines
342 B
C
23 lines
342 B
C
#ifndef DLINKGLOBAL_H
|
|
#define DLINKGLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
#ifdef QtDlink
|
|
#if defined(DLINK_LIBRARY)
|
|
# define DLINKSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define DLINKSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
#else
|
|
define DLINKSHARED_EXPORT
|
|
#endif
|
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
#endif // DLINKGLOBAL_H
|