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