13 lines
236 B
C
13 lines
236 B
C
|
#ifndef BASECPPLIBRARYAPI_H
|
|||
|
#define BASECPPLIBRARYAPI_H
|
|||
|
|
|||
|
#include <QtCore/QtGlobal>
|
|||
|
|
|||
|
#ifdef BASECPPLIBRARY_API
|
|||
|
#define BASECPPLIBRARYAPI Q_DECL_EXPORT
|
|||
|
#else
|
|||
|
#define BASECPPLIBRARYAPI Q_DECL_IMPORT
|
|||
|
#endif
|
|||
|
|
|||
|
#endif // PYTHONMODULEAPI_H
|