Cppcheck
config.h
Go to the documentation of this file.
00001 #ifndef CONFIG_H
00002 #define CONFIG_H
00003 
00004 #ifdef _WIN32
00005 #  ifdef CPPCHECKLIB_EXPORT
00006 #    define CPPCHECKLIB __declspec(dllexport)
00007 #  elif defined(CPPCHECKLIB_IMPORT)
00008 #    define CPPCHECKLIB __declspec(dllimport)
00009 #  else
00010 #    define CPPCHECKLIB
00011 #  endif
00012 #else
00013 #  define CPPCHECKLIB
00014 #endif
00015 
00016 #endif