You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
641 B
C++

#ifndef _LOG4CPP_EXPORT_HH
#define _LOG4CPP_EXPORT_HH
#ifdef LOG4CPP_HAS_DLL
# ifdef LOG4CPP_BUILD_DLL
# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
# define LOG4CPP_EXPORT __declspec(dllexport)
# elif defined(__GNUC__)
# define LOG4CPP_EXPORT __attribute__((visibility("default")))
# else
# define LOG4CPP_EXPORT
# endif
# else
# if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
# define LOG4CPP_EXPORT __declspec(dllimport)
# else
# define LOG4CPP_EXPORT
# endif
# endif
#else
# define LOG4CPP_EXPORT
#endif
#endif // _LOG4CPP_EXPORT_HH