41 /** This base class provides a common printf-like method to send debug information to std::cout, with the purpose of allowing its redirection to other streams if desired.
42 * By default, messages sent to "printf_debug" will be shown in the console (cout) and also in
43 * the stream passed to debugOutputSetStream, but the console output can be
44 * switched off with debugOutputEnableConsole(false).
45 *
46 * In addition, this class will send all the messages from "printf_debug" to the Visual Studio "Output Window" in debug mode (obviously, this is a feature only enabled under Windows).