Fire Core  8.0.0.alpha
GIS framework per tutti gli usi
 Tutto Classi Namespace Funzioni Variabili Ridefinizioni di tipo (typedef) Tipi enumerati (enum) Valori del tipo enumerato Friend
WkbReader.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_GEAR_IO_WKBREADER_HPP_INCLUDED
5 #define FIRE_GEAR_IO_WKBREADER_HPP_INCLUDED
6 
7 #include <iostream>
8 #include <string>
9 
10 #include "fire/export.hpp"
11 
12 namespace fire {
13 namespace gear {
14 namespace geom {
15 class Geometry;
16 } // namespace geom
17 } // namespace gear
18 } // namespace fire
19 
24 namespace fire {
29 namespace gear {
34 namespace io {
39 class FIRE_ENGINE_DLL WkbReader {
40  public:
50  fire::gear::geom::Geometry* read(std::istream& inputStream);
59  unsigned int toStream(const std::string& string, std::ostream& outputStream);
69  fire::gear::geom::Geometry* read(const std::string& string);
70 };
71 } // namespace io
72 } // namespace gear
73 } // namespace fire
74 
75 #endif
Definition: Geometry.hpp:69
classe che specializza l' interfaccia del reader delle geometrie per il formato Well-known binary (WK...
Definition: WkbReader.hpp:39