![]() |
TerraLib 4.1
|
00001 /* 00002 TerraLib - a library for developing GIS applications. 00003 Copyright 2001, 2002, 2003 INPE and Tecgraf/PUC-Rio. 00004 00005 This code is part of the TerraLib library. 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Lesser General Public 00008 License as published by the Free Software Foundation; either 00009 version 2.1 of the License, or (at your option) any later version. 00010 00011 You should have received a copy of the GNU Lesser General Public 00012 License along with this library. 00013 00014 The authors reassure the license terms regarding the warranties. 00015 They specifically disclaim any warranties, including, but not limited to, 00016 the implied warranties of merchantability and fitness for a particular 00017 purpose. The library provided hereunder is on an "as is" basis, and the 00018 authors have no obligation to provide maintenance, support, updates, 00019 enhancements, or modifications. 00020 In no event shall INPE be held liable to any party 00021 for direct, indirect, special, incidental, or consequential damages arising 00022 out of the use of this library and its documentation. 00023 */ 00024 00110 #ifndef TEPDIDEFINES_HPP 00111 #define TEPDIDEFINES_HPP 00112 00113 #include "../kernel/TeDefines.h" 00114 00119 #if TePLATFORM == TePLATFORMCODE_MSWINDOWS 00120 #ifdef PDI_AS_DLL 00121 #define PDI_DLL __declspec(dllexport) 00122 #else 00123 #define PDI_DLL __declspec(dllimport) 00124 #endif 00125 #elif TePLATFORM == TePLATFORMCODE_LINUX || TePLATFORM == TePLATFORMCODE_APPLE 00126 #define PDI_DLL 00127 #else 00128 #error "ERROR: Unsupported platform" 00129 #endif 00130 00133 #endif