|
Gaudi Framework, version v21r7 |
| Home | Generated: 22 Jan 2010 |
#include "IssueLogger.h"#include "GaudiKernel/SvcFactory.h"#include "GaudiKernel/ISvcLocator.h"#include "GaudiKernel/MsgStream.h"#include "GaudiKernel/Tokenizer.h"#include "GaudiKernel/System.h"#include <sstream>#include <streambuf>#include <time.h>#include "boost/bind.hpp"

Go to the source code of this file.
Functions | |
| void | toupper (std::string &s) |
| void toupper | ( | std::string & | s | ) | [inline] |
Definition at line 20 of file IssueLogger.cpp.
00021 { 00022 std::string::iterator it=s.begin(); 00023 while(it != s.end()) 00024 { 00025 *it = toupper(*it); 00026 it++; 00027 } 00028 }