NoGUI: Add ConfirmMessage() to platform

This commit is contained in:
Connor McLaughlin
2022-08-27 19:00:31 +10:00
parent d2d2e3ae6e
commit c90e2f19fc
10 changed files with 35 additions and 11 deletions

View File

@@ -16,6 +16,7 @@ public:
virtual ~NoGUIPlatform() = default;
virtual void ReportError(const std::string_view& title, const std::string_view& message) = 0;
virtual bool ConfirmMessage(const std::string_view& title, const std::string_view& message) = 0;
virtual void SetDefaultConfig(SettingsInterface& si) = 0;