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__) || defined( __BCPLUSPLUS__) || defined( __MWERKS__)
00020 # if defined( GEOS_DLL_LIBRARY_STATIC )
00021 # define GEOS_DLL
00022 # elif defined( GEOS_DLL_LIBRARY )
00023 # define GEOS_DLL __declspec(dllexport)
00024 # else
00025 # define GEOS_DLL __declspec(dllimport)
00026 # endif
00027 #else
00028 # define GEOS_DLL
00029 #endif
00030
00031
00032 #endif // ndef GEOS_EXPORT_H
00033
00034