GEOS
3.3.2
|
00001 /********************************************************************** 00002 * $Id: export.h 2834 2009-12-22 11:38:43Z mloskot $ 00003 * 00004 * GEOS - Geometry Engine Open Source 00005 * http://geos.refractions.net 00006 * 00007 * Copyright (C) 2009 Ragi Y. Burhum <ragi@burhum.com> 00008 * 00009 * This is free software; you can redistribute and/or modify it under 00010 * the terms of the GNU Lesser General Public Licence as published 00011 * by the Free Software Foundation. 00012 * See the COPYING file for more information. 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