CommonDataStructures.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 terralib/geometry/CommonDataStrctures.h
22 
23  \brief A list of common datastructures used by the Geometry Module.
24 */
25 
26 #ifndef __TERRALIB_GEOMETRY_INTERNAL_COMMONDATASTRUCTURES_H
27 #define __TERRALIB_GEOMETRY_INTERNAL_COMMONDATASTRUCTURES_H
28 
29 // TerraLib
30 #include "Config.h"
31 #include "Coord2D.h"
32 #include "../sam/kdtree/Index.h"
33 #include "../sam/kdtree/Node.h"
34 
35 // STL
36 #include <memory>
37 #include <set>
38 #include <vector>
39 
40 namespace te
41 {
42  namespace gm
43  {
44 // Forward declarations
45  class Geometry;
46 
49 
50  using GeometryVector = std::vector<te::gm::Geometry*>;
51  using GeometryVectorConst = std::vector<const te::gm::Geometry*>;
52  } // end namespace gm
53 } // end namespace te
54 
55 #endif // __TERRALIB_GEOMETRY_INTERNAL_COMMONDATASTRUCTURES_H
te
TerraLib.
Definition: AddressGeocodingOp.h:52
te::sam::kdtree::Index
A class that represents a two dimensional K-d Tree (2-d Tree).
Definition: Index.h:68
te::gm::GeometryVectorConst
std::vector< const te::gm::Geometry * > GeometryVectorConst
Definition: CommonDataStructures.h:51
te::gm::GeometryVector
std::vector< te::gm::Geometry * > GeometryVector
Definition: CommonDataStructures.h:50
Coord2D.h
An utility struct for representing 2D coordinates.
Config.h
Proxy configuration file for TerraView (see terraview_config.h).
te::sam::kdtree::Node
A class that represents an Kd-tree node.
Definition: Node.h:62