b7d8e46288
In order to do this I add to make some other additions : - Add a warning popup (TODO, maybe add some icons to differentiate error/warning popups in a future PR ?) - create showError() and showWarning() functions, as helpers to show a message both to the logs and as a popup
11 lines
199 B
C++
11 lines
199 B
C++
#pragma once
|
|
|
|
#include <content/popups/popup_notification.hpp>
|
|
|
|
namespace hex::plugin::builtin {
|
|
|
|
void showError(const std::string& message);
|
|
|
|
void showWarning(const std::string& message);
|
|
}
|