26 #ifndef __TERRALIB_GEOMETRY_INTERNAL_VISITOR_H
27 #define __TERRALIB_GEOMETRY_INTERNAL_VISITOR_H
33 #include "../geometry_fw.h"
66 virtual void visit(
const Curve& visited) = 0;
67 virtual void visit(
const Geometry& visited) = 0;
69 virtual void visit(
const LinearRing& visited) = 0;
70 virtual void visit(
const LineString& visited) = 0;
71 virtual void visit(
const MultiCurve& visited) = 0;
73 virtual void visit(
const MultiPoint& visited) = 0;
77 virtual void visit(
const Point& visited) = 0;
78 virtual void visit(
const PointM& visited) = 0;
79 virtual void visit(
const PointZ& visited) = 0;
80 virtual void visit(
const PointZM& visited) = 0;
81 virtual void visit(
const PointKd& visited) = 0;
82 virtual void visit(
const Polygon& visited) = 0;
84 virtual void visit(
const Surface& visited) = 0;
85 virtual void visit(
const TIN& visited) = 0;
86 virtual void visit(
const Triangle& visited) = 0;
98 #endif // __TERRALIB_GEOMETRY_INTERNAL_VISITOR_H
PolyhedralSurface is a contiguous collection of polygons, which share common boundary segments...
MultiPolygon is a MultiSurface whose elements are Polygons.
Curve is an abstract class that represents 1-dimensional geometric objects stored as a sequence of co...
A point with a z-coordinate value and an associated measurement.
A point with an associated measure.
#define TEGEOMEXPORT
You can use this macro in order to export/import classes and functions from this module.
TIN (triangulated irregular network) is a PolyhedralSurface consisting only of Triangle patches...
A LinearRing is a LineString that is both closed and simple.
MultiPoint is a GeometryCollection whose elements are restricted to points.
A point with z-coordinate value.
LineString is a curve with linear interpolation between points.
Triangle is a polygon with 3 distinct, non-collinear vertices and no interior boundary.
A point with x and y coordinate values.
CompoundCurve is a curve that may have circular and linear segments.
CurvePolygon is a planar surface defined by 1 exterior boundary and 0 or more interior boundaries...
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards.
MultiLineString is a MultiCurve whose elements are LineStrings.
Polygon is a subclass of CurvePolygon whose rings are defined by linear rings.
MultiSurface is a class that represents a 2-dimensional GeometryCollection whose elements are surface...
MultiCurve is a class that represents a 1-dimensional GeometryCollection whose elements are curves...
virtual ~Visitor()
Virtual destructor.
Configuration flags for the Vector Geometry Model of TerraLib.
It is a collection of other geometric objects.
A base abstract class for 0-dimensional geometric objects that represents a single location in coordi...
CircularString is a curve with circular interpolation between points.
Surface is an abstract class that represents a 2-dimensional geometric objects.
A visitor interface for the Geometry hierarchy.
Visitor()
Default constructor.