Error and warning messages now show up as dialog boxes using Boxer. Additional dependencies: - fmt (for string formatting) - Boxer (static)
8 lines
192 B
C++
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
|