26 #ifndef __TERRALIB_GEOMETRY_INTERNAL_WKBREADER_H    27 #define __TERRALIB_GEOMETRY_INTERNAL_WKBREADER_H    30 #include "../common/Enums.h"    31 #include "../common/Static.h"    41     class GeometryCollection;
    44     class MultiLineString;
    49     class PolyhedralSurface;
    71         static Geometry* read(
const char* wkb);
    80         static Geometry* readHex(
const char* hwkb);
    86         static te::gm::Point* getPoint(
const char* wkb, 
const char** endptr);
    88         static te::gm::Point* getPointZ(
const char* wkb, 
const char** endptr);
    90         static te::gm::Point* getPointM(
const char* wkb, 
const char** endptr);
    92         static te::gm::Point* getPointZM(
const char* wkb, 
const char** endptr);
    98         static te::gm::Polygon* getPolygon(
const char* wkb, 
const char** endptr);
   108 #endif  // __TERRALIB_GEOMETRY_INTERNAL_WKBREADER_H PolyhedralSurface is a contiguous collection of polygons, which share common boundary segments...
 
GeomType
Each enumerated type is compatible with a Well-known Binary (WKB) type code. 
 
#define TEGEOMEXPORT
You can use this macro in order to export/import classes and functions from this module. 
 
A LinearRing is a LineString that is both closed and simple. 
 
LineString is a curve with linear interpolation between points. 
 
A point with x and y coordinate values. 
 
MachineByteOrder
Endianness. 
 
Geometry is the root class of the geometries hierarchy, it follows OGC and ISO standards. 
 
Polygon is a subclass of CurvePolygon whose rings are defined by linear rings. 
 
Configuration flags for the Vector Geometry Model of TerraLib. 
 
It is a collection of other geometric objects. 
 
A base type for static classes. 
 
A class that deserializes a geometry from a valid WKB.