All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
iOSInputBoxFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "IInputBoxFactory.h"
6 #include "InputBox.h"
7 #include <string>
8 
9 namespace Eegeo
10 {
11  namespace UI
12  {
13  namespace NativeInput
14  {
15  namespace iOS
16  {
17  class iOSInputBox;
18 
20  {
21  public:
22  virtual ~iOSInputBoxFactory() {}
23 
24  virtual IInputBox* CreateInputBox(const std::string& title,
25  const std::string& message,
26  const std::string& button,
27  const std::string& placeholder,
28  bool initialContentIsPlaceholder,
29  IInputBoxDismissedHandler& handler);
30 
31  virtual iOSInputBox* CreateiOSInputBox(const std::string& title,
32  const std::string& message,
33  const std::string& button,
34  const std::string& placeholder,
35  bool initialContentIsPlaceholder,
36  IInputBoxDismissedHandler& handler);
37  };
38  }
39  }
40  }
41 }