13 lines
218 B
C
13 lines
218 B
C
#ifndef JRPCPP_GLOBAL_H
|
|
#define JRPCPP_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(JRPCPP_LIBRARY)
|
|
#define JRPCPP_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
#define JRPCPP_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // JRPCPP_GLOBAL_H
|