13 lines
290 B
C
13 lines
290 B
C
#ifndef TOOLKIT_TOOLKIT_PLUGIN_GLOBAL_H
|
|
#define TOOLKIT_TOOLKIT_PLUGIN_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(TOOLKIT_PLUGIN_LIBRARY)
|
|
#define TOOLKIT_PLUGIN_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
#define TOOLKIT_PLUGIN_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // TOOLKIT_TOOLKIT_PLUGIN_GLOBAL_H
|