![]() |
|
|
Generated: 18 Jul 2008 |
#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"
Include dependency graph for IssueLogger.cpp:

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.
Referenced by THistSvc::connect(), TagCollectionSvc::connect(), NTupleSvc::connect(), IssueLogger::connect(), AIDATupleSvc::connect(), OutputStream::connectConversionSvc(), HistogramSvc::connectInput(), PoolDbCnvSvc::finalize(), GFALStageFile::GFALStageFile(), HbookCnv::PersSvc::initialize(), TagCollectionStream::initialize(), CollectionCloneAlg::initialize(), EventSelectorDataStream::initialize(), HbookCnv::HRWNTupleCnv::load(), MultiStoreSvc::makePartitions(), PoolDbCacheSvc::setCallbackOptions(), DataOnDemandSvc::setupAlgHandlers(), DataOnDemandSvc::setupNodeHandlers(), and toupper().
00021 { 00022 std::string::iterator it=s.begin(); 00023 while(it != s.end()) 00024 { 00025 *it = toupper(*it); 00026 it++; 00027 } 00028 }