blob: f8bd853924f8bb2d14615adf6eb5592a3984c1f3 (
plain)
1
2
3
4
5
6
7
8
9
|
#include <QtCore/QtGlobal>
#if defined(LOG4QT_EXPORTS)
# define LOG4QT_EXPORT Q_DECL_EXPORT
#elif defined (LOG4QT_IMPORTS)
# define LOG4QT_EXPORT Q_DECL_IMPORT
#else
# define LOG4QT_EXPORT /**/
#endif
|