Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | Related Pages

export.h

00001 /**********************************************************************
00002  * $Id: export.h 2045 2008-03-17 20:18:24Z Ragi Burhum $
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 
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 

Generated on Thu Jun 11 06:17:01 2009 for GEOS by  doxygen 1.4.4