log4cpp 1.1.6
Loading...
Searching...
No Matches
Export.hh
Go to the documentation of this file.
1/*
2 * Copyright 2002, LifeLine Networks BV (www.lifeline.nl). All rights reserved.
3 * Copyright 2002, Bastiaan Bakker. All rights reserved.
4 *
5 * See the COPYING file for the terms of usage and distribution.
6 */
7
8#ifndef _LOG4CPP_EXPORT_HH
9#define _LOG4CPP_EXPORT_HH
10
11#ifdef LOG4CPP_HAS_DLL
12#ifdef LOG4CPP_BUILD_DLL
13#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
14#define LOG4CPP_EXPORT __declspec(dllexport)
15#else
16#define LOG4CPP_EXPORT
17#endif
18#else
19#if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__MINGW32__)
20#define LOG4CPP_EXPORT __declspec(dllimport)
21#else
22#define LOG4CPP_EXPORT
23#endif
24#endif
25#else
26#define LOG4CPP_EXPORT
27#endif
28
29#endif // _LOG4CPP_EXPORT_HH