All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InteriorEntityData.h
1 // Copyright eeGeo Ltd (2012-2018), All Rights Reserved
2 
3 #pragma once
4 
5 #include <string>
6 
7 namespace Eegeo
8 {
9  namespace Resources
10  {
11  namespace Interiors
12  {
13  namespace Webservice
14  {
16  {
17  std::string name;
18  std::string model;
19  double latitude;
20  double longitude;
21  float heightOffset;
22  float orientation;
23 
25  : name("")
26  , model("")
27  , latitude(0)
28  , longitude(0)
29  , heightOffset(0)
30  , orientation(0)
31  {
32 
33  }
34  };
35  }
36  }
37  }
38 }