TrinityCore
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
prompt.h
Go to the documentation of this file.
1 
11 #ifndef G3D_PROMPT_H
12 #define G3D_PROMPT_H
13 
14 #include "platform.h"
15 #include <string>
16 
17 namespace G3D {
18 
33 int prompt(
34  const char* windowTitle,
35  const char* promptx,
36  const char** choice,
37  int numChoices,
38  bool useGui);
39 
46 inline int prompt(
47  const char* windowTitle,
48  const char* promptx,
49  const char** choice,
50  int numChoices) {
51 
52  return prompt(windowTitle, promptx, choice, numChoices, true);
53 }
54 
55 
59 void msgBox(
60  const std::string& message,
61  const std::string& title = "Message");
62 
63 
64 }; // namespace
65 
66 #endif
67 
Definition: AABox.h:25
int prompt(const char *windowTitle, const char *promptx, const char **choice, int numChoices, bool useGui)
Definition: prompt.cpp:553
void msgBox(const std::string &message, const std::string &title="Message")
Definition: prompt.cpp:582