WKTReader.h
Go to the documentation of this file.
1 /* Copyright (C) 2008 National Institute For Space Research (INPE) - Brazil.
2 
3  This file is part of the TerraLib - a Framework for building GIS enabled applications.
4 
5  TerraLib is free software: you can redistribute it and/or modify
6  it under the terms of the GNU Lesser General Public License as published by
7  the Free Software Foundation, either version 3 of the License,
8  or (at your option) any later version.
9 
10  TerraLib is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU Lesser General Public License for more details.
14 
15  You should have received a copy of the GNU Lesser General Public License
16  along with TerraLib. See COPYING. If not, write to
17  TerraLib Team at <terralib-team@terralib.org>.
18  */
19 
20 /*!
21  \file WKTReader.h
22 
23  \brief A class that deserializes a SRS from a valid WKT.
24 */
25 
26 #ifndef __TERRALIB_SRS_INTERNAL_WKTREADER_H
27 #define __TERRALIB_SRS_INTERNAL_WKTREADER_H
28 
29 // TerraLib
30 #include "../common/Static.h"
31 #include "Config.h"
32 #include "WKTParser.h"
33 
34 // STL
35 #include <string>
36 
37 namespace te
38 {
39  namespace srs
40  {
41 // Forward declarations
42  class SpatialReferenceSystem;
43 
44  /*!
45  \class WKTReader
46 
47  \brief A class that deserializes a SRS from a valid WKT.
48 
49  \ingroup srs
50  */
52  {
53  public:
54 
55  /*!
56  \brief It returns a valid SRS from a given WKT.
57 
58  \param wkt A valid WKT SRS.
59 
60  \return A SRS created from reading the WKT.
61 
62  \exception Exception It will throw an exception if the given WKT is invvalid.
63 
64  \note The caller of this method will take the ownership of the returned SRS.
65  */
66  static SpatialReferenceSystem* read(const char* wkt);
67  };
68 
69  } // namespace srs
70 } // namespace te
71 
72 #endif // __TERRALIB_SRS_INTERNAL_WKTREADER_H
A Spatial Reference System, also known as a Coordinate System.
URI C++ Library.
#define TESRSEXPORT
You can use this macro in order to export/import classes and functions from this module.
Definition: Config.h:364
A base type for static classes.
Definition: Static.h:43
A class that deserializes a SRS from a valid WKT.
Definition: WKTReader.h:51