All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
PoiSearchResult.h
1 #pragma once
2 
3 #include "LatLongAltitude.h"
4 #include <string>
5 
6 
7 namespace Eegeo
8 {
9  namespace PoiSearch
10  {
12  {
13  int Id;
14  std::string Title;
15  std::string Subtitle;
16  std::string Tags;
18  double HeightOffset;
19  bool Indoor;
20  std::string IndoorId;
21  int FloorId;
22  std::string UserData;
23 
25  int id,
26  const std::string& title,
27  const std::string& subtitle,
28  const std::string& tags,
29  const Space::LatLong& latLong,
30  double heightOffset,
31  bool indoor,
32  const std::string& indoorId,
33  int floorId,
34  const std::string& userData)
35  : Id(id)
36  , Title(title)
37  , Subtitle(subtitle)
38  , Tags(tags)
39  , LatLong(latLong)
40  , HeightOffset(heightOffset)
41  , Indoor(indoor)
42  , IndoorId(indoorId)
43  , FloorId(floorId)
44  , UserData(userData)
45  {
46 
47  }
48  };
49  }
50 }