All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
IInputBoxFactory.h
1 // Copyright eeGeo Ltd (2012-2014), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "InputBox.h"
7 #include <string>
8 
9 namespace Eegeo
10 {
11  namespace UI
12  {
13  namespace NativeInput
14  {
16  {
17  public:
18  virtual ~IInputBoxFactory() {}
19 
20  virtual IInputBox* CreateInputBox(const std::string& title,
21  const std::string& message,
22  const std::string& button,
23  const std::string& initialContent,
24  bool initialContentIsPlaceholder,
25  IInputBoxDismissedHandler& handler) = 0;
26  };
27  }
28  }
29 }