13 lines
258 B
C
13 lines
258 B
C
#ifndef CUTELOGGER_GLOBAL_H
|
|
#define CUTELOGGER_GLOBAL_H
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#if defined(CUTELOGGER_LIBRARY)
|
|
# define CUTELOGGERSHARED_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define CUTELOGGERSHARED_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // CUTELOGGER_GLOBAL_H
|