facecam2d/src/error.hpp
Epicalert 3773532816
Add graphical error messages
Error and warning messages now show up as dialog boxes using Boxer.
Additional dependencies:
- fmt (for string formatting)
- Boxer (static)
2021-02-14 23:47:07 +08:00

8 lines
192 B
C++

#ifndef ERROR_HPP
#define ERROR_HPP
void showError(std::string message, std::string titleMessage, bool fatal = true);
void showWarning(std::string message, std::string titleMessage);
#endif