GEOS
3.6.2
|
00001 /********************************************************************** 00002 * 00003 * GEOS - Geometry Engine Open Source 00004 * http://geos.osgeo.org 00005 * 00006 * Copyright (C) 2009 Ragi Y. Burhum <ragi@burhum.com> 00007 * 00008 * This is free software; you can redistribute and/or modify it under 00009 * the terms of the GNU Lesser General Public Licence as published 00010 * by the Free Software Foundation. 00011 * See the COPYING file for more information. 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