13 lines
240 B
C
13 lines
240 B
C
|
#ifndef LIBCONFIG_GLOBAL_H
|
||
|
#define LIBCONFIG_GLOBAL_H
|
||
|
|
||
|
#include <QtCore/qglobal.h>
|
||
|
|
||
|
#if defined(LIBCONFIG_LIBRARY)
|
||
|
# define LIBCONFIG_EXPORT Q_DECL_EXPORT
|
||
|
#else
|
||
|
# define LIBCONFIG_EXPORT Q_DECL_IMPORT
|
||
|
#endif
|
||
|
|
||
|
#endif // LIBCONFIG_GLOBAL_H
|