OpenMining  0.01
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros Pages
mytypes.h
Go to the documentation of this file.
1 #ifndef mytypes_h
2 #define mytypes_h
3 
4 // standard includes
5 #include <map>
6 #include <cstdint>
7 
8 // boost includes
9 
10 // Qt includes
11 
12 // my includes
13 typedef int32_t x_t;
14 typedef int32_t y_t;
15 typedef int32_t z_t;
16 
17 
18 typedef int32_t latitude_t;
19 typedef int32_t longitude_t;
20 typedef int32_t elevation_t;
21 typedef std::map<latitude_t, elevation_t> latitudes_t;
22 typedef std::map<longitude_t, latitudes_t> longitudes_t; // long = x , lat = y, elev = z
23 
24 
25 
26 #endif
std::map< latitude_t, elevation_t > latitudes_t
Definition: mytypes.h:21
int32_t latitude_t
Definition: mytypes.h:18
int32_t x_t
Definition: mytypes.h:13
std::map< longitude_t, latitudes_t > longitudes_t
Definition: mytypes.h:22
int32_t elevation_t
Definition: mytypes.h:20
int32_t z_t
Definition: mytypes.h:15
int32_t longitude_t
Definition: mytypes.h:19
int32_t y_t
Definition: mytypes.h:14