All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WindowsAlertBoxFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "AlertBox.h"
7 #include "IAlertBoxFactory.h"
8 #include <string>
9 #include "WindowsNativeState.h"
10 
11 namespace Eegeo
12 {
13  namespace UI
14  {
15  namespace NativeAlerts
16  {
17  namespace Windows
18  {
20  {
21  WindowsNativeState* m_pState;
22  public:
24  :m_pState(pState)
25  { }
26 
27  virtual ~WindowsAlertBoxFactory() {}
28 
29  virtual ISingleOptionAlertBox* CreateSingleOptionAlertBox(const std::string& title,
30  const std::string& message,
32  };
33  }
34  }
35  }
36 }
37 
38