All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IconSetService.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "Icons.h"
7 #include "IconSet.h"
8 #include <string>
9 
10 namespace Eegeo
11 {
12  namespace Icons
13  {
15  {
16  public:
17 
19  IconSetRepository& repository);
20  ~IconSetService();
21 
22  bool LoadSynchronous(const std::string& iconSetJsonFilename, IconSet::TIdType& out_iconSetId);
23 
24  bool IsLoaded(const IconSet::TIdType& iconSetId) const;
25  const IconSet& GetIconSet(const IconSet::TIdType& iconSetId) const;
26 
27  private:
28 
29  void Unload(const IconSet::TIdType& iconSetId);
30 
31  IconSetLoader& m_loader;
32  IconSetRepository& m_repository;
33 
34  };
35  }
36 }