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