#include #include #include #include void duchampWarning(std::string subroutine, std::string warning) { /** * Prints a WARNING message to the standard error stream, quoting * the subroutine that the problem occurred in, and a descriptive * warning text. * * Format: WARNING \ : Something happened that you should be aware of. */ std::string preamble = "WARNING <" + subroutine + "> : "; std::cerr << preamble; for(int i=0;i : Something bad happened. */ std::string preamble = "\aERROR <" + subroutine + "> : "; std::cerr << preamble; for(int i=0;i