All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WindowsPlatformConfigBuilder.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "IPlatformConfigBuilder.h"
6 #include "PlatformConfig.h"
7 #include <string>
8 
9 namespace Eegeo
10 {
11  namespace Windows
12  {
14  {
15  public:
16 
17  static WindowsPlatformConfigBuilder Make();
18 
20  WindowsPlatformConfigBuilder(std::string deviceModel)
21  {}
22 
23  Config::PlatformConfig Build();
24 
25  private:
27  {}
28  };
29 
30  }
31 }