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

17 lines
361 B
C++

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