|
Gaudi Framework, version v21r8 |
| Home | Generated: 17 Mar 2010 |
Public Types | |
| typedef boost::array< int, MSG::NUM_LEVELS > | ArrayType |
| Simple typedef for readability. | |
Public Member Functions | |
| MsgAry () | |
| Default constructor. | |
Public Attributes | |
| ArrayType | msg |
| Internal array of counters. | |
Definition at line 143 of file MessageSvc.h.
| typedef boost::array<int,MSG::NUM_LEVELS> MessageSvc::MsgAry::ArrayType |
| MessageSvc::MsgAry::MsgAry | ( | ) | [inline] |
Default constructor.
Definition at line 149 of file MessageSvc.h.
00149 { 00150 // This is a special hack to have a fast initialization of the array 00151 // because we cannot use initializer lists in the constructor (should be 00152 // possible in C++0X). 00153 static const ArrayType zero = {{0}}; 00154 msg = zero; 00155 }