|
Gaudi Framework, version v21r11 |
| Home | Generated: 30 Sep 2010 |
#include "StatusCodeSvc.h"#include "GaudiKernel/MsgStream.h"#include "GaudiKernel/SvcFactory.h"#include "GaudiKernel/StatusCode.h"
Go to the source code of this file.
Functions | |
| void | toupper (std::string &s) |
| void toupper | ( | std::string & | s | ) | [inline] |
Definition at line 14 of file StatusCodeSvc.cpp.
00015 { 00016 std::string::iterator it=s.begin(); 00017 while(it != s.end()) 00018 { 00019 *it = toupper(*it); 00020 it++; 00021 } 00022 }