locale independent util::parse_double

This commit is contained in:
MihailRis
2024-02-02 20:02:30 +03:00
parent 84e8fd1af6
commit bc72742ee3
20 changed files with 140 additions and 48 deletions
+3 -2
View File
@@ -4,6 +4,7 @@
#include <memory>
#include <string>
#include "GUI.h"
#include "../../delegates.h"
namespace gui {
class Button;
@@ -23,13 +24,13 @@ namespace guiutil {
void alert(
gui::GUI* gui,
const std::wstring& text,
gui::runnable on_hidden=nullptr
runnable on_hidden=nullptr
);
void confirm(
gui::GUI* gui,
const std::wstring& text,
gui::runnable on_confirm=nullptr,
runnable on_confirm=nullptr,
std::wstring yestext=L"",
std::wstring notext=L"");
}