All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IconMaterialSetCache.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Icons.h"
6 #include "Rendering.h"
7 #include "IconSet.h"
8 #include <map>
9 
10 namespace Eegeo
11 {
12  namespace Icons
13  {
15  {
16  public:
19 
20  bool Contains(const IconSet::TIdType& setId) const;
21 
22  MaterialSet* Get(const IconSet::TIdType& setId) const;
23 
24  void Add(const IconSet::TIdType& setId, MaterialSet* pIconMaterialSet);
25  private:
26  typedef std::map<IconSet::TIdType, MaterialSet*> TStoreType;
27 
28  TStoreType m_iconMaterialSets;
29  };
30  }
31 }