You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
|
1 month ago
|
/**********************************************************************
|
||
|
|
*
|
||
|
|
* GEOS - Geometry Engine Open Source
|
||
|
|
* http://geos.osgeo.org
|
||
|
|
*
|
||
|
|
* Copyright (C) 2009 Ragi Y. Burhum <ragi@burhum.com>
|
||
|
|
*
|
||
|
|
* This is free software; you can redistribute and/or modify it under
|
||
|
|
* the terms of the GNU Lesser General Public Licence as published
|
||
|
|
* by the Free Software Foundation.
|
||
|
|
* See the COPYING file for more information.
|
||
|
|
*
|
||
|
|
**********************************************************************/
|
||
|
|
#ifndef GEOS_EXPORT_H
|
||
|
|
#define GEOS_EXPORT_H
|
||
|
|
|
||
|
|
#if defined(_MSC_VER) || defined(__CYGWIN__) || defined(__MINGW32__) || \
|
||
|
|
defined( __BCPLUSPLUS__) || defined( __MWERKS__)
|
||
|
|
|
||
|
|
# if defined(GEOS_DLL_EXPORT)
|
||
|
|
# define GEOS_DLL __declspec(dllexport)
|
||
|
|
# elif defined(GEOS_DLL_IMPORT)
|
||
|
|
# define GEOS_DLL __declspec(dllimport)
|
||
|
|
# else
|
||
|
|
# define GEOS_DLL
|
||
|
|
# endif
|
||
|
|
#else
|
||
|
|
# define GEOS_DLL
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#if defined(_MSC_VER)
|
||
|
|
# pragma warning(disable: 4251) // identifier : class type needs to have dll-interface to be used by clients of class type2
|
||
|
|
#endif
|