1#ifndef DIALOG_H_DEFINED
2#define DIALOG_H_DEFINED
20 void show(std::string message,
bool pressAnyKey=
false);
28 bool askBool(std::string question, std::string title=
"",
bool default_value=
false);
Quick-and-dirty functions to show GUI-like dialogs on the screen.
bool askBool(std::string question, std::string title="", bool default_value=false)
Spawns a Dialog box asking for a yes-or-no #question.
void show(std::string message, bool pressAnyKey=false)
Shows a message on the screen.