00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef GEOS_EXPORT_H
00017 #define GEOS_EXPORT_H
00018
00019 #if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || \
00020 defined( __BCPLUSPLUS__) || defined( __MWERKS__)
00021
00022 # if defined(GEOS_DLL_EXPORT)
00023 # define GEOS_DLL __declspec(dllexport)
00024 # elif defined(GEOS_DLL_IMPORT)
00025 # define GEOS_DLL __declspec(dllimport)
00026 # else
00027 # define GEOS_DLL
00028 # endif
00029 #else
00030 # define GEOS_DLL
00031 #endif
00032
00033 #endif // GEOS_EXPORT_H
00034