Go to the source code of this file.
Defines | |
#define | VERBOSITY_HEADER_READ 1 |
Enumerations | |
enum | verbosities { silent, quiet, normal, debug, everything } |
Expresses a verbosity level. More... |
|
|
|
Expresses a verbosity level. Several classes report a different level of detail depending on the value of some internal verbosity variable, usually set with a function such as DviFile#verbosity.
The initial value of this is always The values are ordered, so that enum verbosities verbosity_; ... if (verbosity_ > normal) { // chatter }is a good way of testing whether the verbosity level is above normal. |