All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
InteriorsHeightProvider.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "Interiors.h"
7 
8 namespace Eegeo
9 {
10  namespace Resources
11  {
12  namespace Interiors
13  {
15  {
16  public:
17 
18  InteriorsHeightProvider(const InteriorInteractionModel& interiorInteractionModel,
19  const IImmutableInteriorViewModel& interiorViewModel);
21 
22  float GetInteriorMaxHeight() const;
23  bool HasInteriorHeight() const;
24 
25  private:
26 
27  const InteriorInteractionModel& m_interiorInteractionModel;
28  const IImmutableInteriorViewModel& m_interiorViewModel;
29  };
30  }
31  }
32 }