All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
iOSAlertBoxFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "IAlertBoxFactory.h"
6 #include "AlertBox.h"
7 #include <string>
8 
9 namespace Eegeo
10 {
11  namespace UI
12  {
13  namespace NativeAlerts
14  {
15  namespace iOS
16  {
18  {
19  public:
20  virtual ~iOSAlertBoxFactory() {}
21 
22  virtual ISingleOptionAlertBox* CreateSingleOptionAlertBox(const std::string& title,
23  const std::string& message,
25  };
26  }
27  }
28  }
29 }