![]() |
TerraLib 4.1
|
00001 /************************************************************************************ 00002 TerraLib - a library for developing GIS applications. 00003 Copyright 2001-2007 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 purpose. 00017 The library provided hereunder is on an "as is" basis, and the authors have no 00018 obligation to provide maintenance, support, updates, enhancements, or modifications. 00019 In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct, 00020 indirect, special, incidental, or consequential damages arising out of the use 00021 of this library and its documentation. 00022 *************************************************************************************/ 00023 00024 #ifndef __TERRALIB_INTERNAL_WKTGEOMETRYDECODER_H 00025 #define __TERRALIB_INTERNAL_WKTGEOMETRYDECODER_H 00026 00027 #include "TeUtilsDefines.h" 00028 00029 //STL include files 00030 #include <string> 00031 using namespace std; 00032 00033 //Forward declarations 00034 class TePolygon; 00035 class TeLine2D; 00036 class TeCoord2D; 00037 00046 namespace TeWKTGeometryDecoder 00047 { 00052 00057 TLUTILS_DLL void encodePolygon(const TePolygon& polygon, string& wktPoly); 00058 00063 TLUTILS_DLL void encodeLine(const TeLine2D& line, string& wktLine); 00064 00069 TLUTILS_DLL void encodePoint(const TeCoord2D& point, string& wktPoint); 00071 00076 00081 TLUTILS_DLL void decodePolygon(const string& wktPoly, TePolygon& poly); 00082 00087 TLUTILS_DLL void decodeLine(const string& wktLine, TeLine2D& line); 00088 00093 TLUTILS_DLL void decodePoint(const string& wktPoint, TeCoord2D& point); 00095 }; 00096 00097 #endif //__TERRALIB_INTERNAL_WKTGEOMETRYENCODER_H