1
0
mirror of synced 2024-12-02 11:17:19 +01:00
ImHex/plugins/builtin/source/content/helpers/notification.cpp

17 lines
361 B
C++

#include <hex/helpers/logger.hpp>
#include <toasts/toast_notification.hpp>
namespace hex::plugin::builtin {
void showError(const std::string& message){
ui::ToastError::open(message);
log::error(message);
}
void showWarning(const std::string& message){
ui::ToastWarning::open(message);
log::warn(message);
}
}