All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
OSXLocationService.h
1 // Copyright (c) 2014 eeGeo. All rights reserved.
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "ILocationService.h"
7 #include "InteriorId.h"
8 
9 namespace Eegeo
10 {
11  namespace OSX
12  {
14  {
15  public:
16  bool IsIndoors();
17  Resources::Interiors::InteriorId GetInteriorId();
18  bool GetLocation(Eegeo::Space::LatLong& latlong);
19  bool GetAltitude(double& altitude);
20  bool GetFloorIndex(int& floorIndex);
21  bool GetHorizontalAccuracy(double& accuracy);
22  bool GetHeadingDegrees(double& headingDegrees);
23  void StopListening(){};
24  const bool GetIsAuthorized() const;
25  };
26  }
27 }