forked from romixlab/qmsgpack
13 lines
254 B
C
13 lines
254 B
C
#ifndef MSGPACK_EXPORT_H
|
|
#define MSGPACK_EXPORT_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(MSGPACK_MAKE_LIB) // building lib
|
|
#define MSGPACK_EXPORT Q_DECL_EXPORT
|
|
#else // using lib
|
|
#define MSGPACK_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // MSGPACK_EXPORT_H
|