#include <Validate.h>
Public Member Functions | |
| Vout () | |
Public Attributes | |
| bool | verbose |
|
|
Definition at line 55 of file Validate.h. References gSystem(), and verbose. 00055 {
00056 verbose = false;
00057
00058 const char* verbosity = gSystem -> Getenv("VALIDATION_VERBOSITY");
00059 if(verbosity != 0){
00060 string vb = string(verbosity);
00061 if(vb == "INFO" ||
00062 vb == "DEBUG" ||
00063 vb == "VERBOSE" ){
00064 verbose = true;
00065 }
00066 }
00067 }
|
|
|
Definition at line 69 of file Validate.h. Referenced by operator<<(), and Vout(). |
1.3.9.1