2013-09-04 20:59:49 +02:00
|
|
|
#ifndef configH
|
|
|
|
#define configH
|
2012-06-10 14:19:09 +02:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
# ifdef CPPCHECKLIB_EXPORT
|
|
|
|
# define CPPCHECKLIB __declspec(dllexport)
|
|
|
|
# elif defined(CPPCHECKLIB_IMPORT)
|
|
|
|
# define CPPCHECKLIB __declspec(dllimport)
|
|
|
|
# else
|
|
|
|
# define CPPCHECKLIB
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define CPPCHECKLIB
|
|
|
|
#endif
|
|
|
|
|
2013-09-04 20:59:49 +02:00
|
|
|
#endif // configH
|