NoGUI: Add ConfirmMessage() to platform
This commit is contained in:
@@ -43,9 +43,13 @@ bool VTYNoGUIPlatform::Initialize()
|
||||
|
||||
void VTYNoGUIPlatform::ReportError(const std::string_view& title, const std::string_view& message)
|
||||
{
|
||||
const std::string title_copy(title);
|
||||
const std::string message_copy(message);
|
||||
Log_ErrorPrintf("%s: %s", title_copy.c_str(), message_copy.c_str());
|
||||
// not implemented
|
||||
}
|
||||
|
||||
bool VTYNoGUIPlatform::ConfirmMessage(const std::string_view& title, const std::string_view& message)
|
||||
{
|
||||
// not implemented
|
||||
return true;
|
||||
}
|
||||
|
||||
void VTYNoGUIPlatform::SetDefaultConfig(SettingsInterface& si)
|
||||
|
||||
Reference in New Issue
Block a user