Frobby
0.9.5
|
Go to the source code of this file.
Functions | |
void | display (const string &msg, const string &prepend) |
Display msg to standard error with automatic line breaking. More... | |
void | displayNote (const string &msg) |
Display msg to standard error in a way that indicates that this is something that the user should take note of but that is not an error. More... | |
void | displayError (const string &msg) |
Display msg to standard error in a way that indicates that it is an error. More... | |
void | displayInternalError (const string &msg) |
Display msg to standard in a way that indicates that it is an internal error. More... | |
void | displayException (const std::exception &exception) |
Display the message of exception. More... | |
void display | ( | const string & | msg, |
const string & | prepend = "" |
||
) |
Display msg to standard error with automatic line breaking.
If a automatically broken line begins with whitespace, that whitespace is repeated in front of every line that is generated from breaking it.
prepend | Print this in front of every line that is printed. |
Definition at line 131 of file display.cpp.
void displayError | ( | const string & | msg | ) |
Display msg to standard error in a way that indicates that it is an error.
Definition at line 139 of file display.cpp.
void displayException | ( | const std::exception & | exception | ) |
Display the message of exception.
Definition at line 147 of file display.cpp.
void displayInternalError | ( | const string & | msg | ) |
Display msg to standard in a way that indicates that it is an internal error.
Definition at line 143 of file display.cpp.
void displayNote | ( | const string & | msg | ) |
Display msg to standard error in a way that indicates that this is something that the user should take note of but that is not an error.
Definition at line 135 of file display.cpp.