All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PlaceNameData.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "VectorMath.h"
6 #include <string>
7 
8 
9 namespace Eegeo
10 {
11  namespace Resources
12  {
13  namespace PlaceNames
14  {
16  {
17  public:
18  std::string name;
19  Eegeo::dv3 positionEcef;
20  std::string category;
21  std::string icon;
22  float priority;
23 
24  PlaceNameData(const std::string& name, const dv3& positionEcef, const std::string& category, const std::string& icon, float priority)
25  : name(name)
26  , positionEcef(positionEcef)
27  , category(category)
28  , icon(icon)
29  , priority(priority)
30  {
31 
32  }
33  };
34  }
35  }
36 }