blob: c4459c044ea973fe0ec61d01456a61ec95d57c2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Adapted from https://github.com/aaronmjacobs/Boxer/blob/master/include/boxer/boxer.h
#include "Dialog.hpp"
namespace Dialog {
Selection Show(const char* message, const char* title, Style style) {
return Show(message, title, style, kDefaultButtons);
}
Selection Show(const char* message, const char* title, Buttons buttons) {
return Show(message, title, kDefaultStyle, buttons);
}
Selection Show(const char* message, const char* title) {
return Show(message, title, kDefaultStyle, kDefaultButtons);
}
} // namespace Dialog
|