std::string Warn(const std::string &msg, const bool do_text_wrapping=true)
This function formats a text message as a warning message, adding the '### WARN: ' prefix and (by def...
Definition: TextMsg.cpp:68
std::vector< std::string > automatic_text_wrap(const std::string &text, const int max_line_length)
This function performs automatic text wrapping on a string, returning an array of strings each not ex...
Definition: TextMsg.cpp:82
std::string Info(const std::string &msg, const bool do_text_wrapping=true)
This function formats a text message as an info message, adding the '### INFO: ' prefix and (by defau...
Definition: TextMsg.cpp:61
void Assert(const char *ex, const char *file, const int line, const std::string &msg)
Definition: TextMsg.cpp:75
std::string Err(const std::string &msg, const bool do_text_wrapping=true)
This function formats a text message as an error message, adding the '### ERROR: ' prefix and (by def...
Definition: TextMsg.cpp:54