All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IAlertBoxFactory.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 <string>
8 
9 namespace Eegeo
10 {
11  namespace UI
12  {
13  namespace NativeAlerts
14  {
16  {
17  public:
18  virtual ~IAlertBoxFactory() {}
19 
20  virtual ISingleOptionAlertBox* CreateSingleOptionAlertBox(const std::string& title,
21  const std::string& message,
23  };
24  }
25  }
26 }