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
Size.hpp
1 // Copyright 2015 GEOSYSTEMS SRL
2 // All Rights Reserved.
3 
4 #ifndef FIRE_GIS_SIZE_HPP_INCLUDED
5 #define FIRE_GIS_SIZE_HPP_INCLUDED
6 
7 #include <fire/gear/geom/Envelope.hpp>
8 
9 #include <exception>
10 
11 #include "fire/gis/export.hpp"
12 
13 namespace fire {
14 namespace gis {
15 namespace data {
16 
20 class FIRE_GIS_DLL Size: public gear::geom::Envelope {
21  public:
25  Size();
26 
32  Size(double w, double h);
33 
38  Size(const Size& rhs);
39 
44  Size& operator=(const Size& rhs);
45 
49  virtual ~Size();
50 };
51 
52 } // namespace data
53 } // namespace gis
54 } // namespace fire
55 
56 #endif
Definition: Envelope.hpp:31
Classe contenente le informazioni di dimensione.
Definition: Size.hpp:20