All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IconSetIdBuilder.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include <string>
6 #include "IconSet.h"
7 
8 namespace Eegeo
9 {
10  namespace Icons
11  {
12  namespace IconSetIdBuilder
13  {
14  IconSet::TIdType GetIdForIconSet(const std::string& iconSetJsonPath)
15  {
16  const std::string::size_type extPosition = iconSetJsonPath.find_last_of(".") + 1;
17  IconSet::TIdType iconSetId = iconSetJsonPath.substr(0, extPosition-1);
18  return iconSetId;
19  }
20  }
21  }
22 }