2015-12-30 06:41:46 +00:00
|
|
|
#if defined(Hiro_MessageWindow)
|
|
|
|
|
|
|
|
namespace hiro {
|
2013-03-15 13:11:33 +00:00
|
|
|
|
|
|
|
struct pMessageWindow {
|
2015-12-30 06:41:46 +00:00
|
|
|
static auto error(MessageWindow::State& state) -> MessageWindow::Response;
|
|
|
|
static auto information(MessageWindow::State& state) -> MessageWindow::Response;
|
|
|
|
static auto question(MessageWindow::State& state) -> MessageWindow::Response;
|
|
|
|
static auto warning(MessageWindow::State& state) -> MessageWindow::Response;
|
2013-03-15 13:11:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2015-12-30 06:41:46 +00:00
|
|
|
|
|
|
|
#endif
|