All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
BuiltResourceWithKey.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "IBuiltResource.h"
6 #include "MortonKey.h"
7 
8 namespace Eegeo
9 {
10  namespace Resources
11  {
13  {
14  public:
16  : m_key(mortonKey)
17  {
18 
19  }
20 
21  const Eegeo::Streaming::MortonKey& GetKey() const
22  {
23  return m_key;
24  }
25 
26  private:
28  };
29  }
30 }