|
Gaudi Framework, version v21r6 |
| Home | Generated: 11 Nov 2009 |
#include <cassert>
#include "GaudiKernel/SvcFactory.h"
#include "GaudiKernel/ISvcLocator.h"
#include "GaudiKernel/Tokenizer.h"
#include "ExceptionSvc.h"

Go to the source code of this file.
Functions | |
| void | toupper (std::string &s) |
| void toupper | ( | std::string & | s | ) | [inline] |
Definition at line 28 of file ExceptionSvc.cpp.
00029 { 00030 std::string::iterator it=s.begin(); 00031 while(it != s.end()) 00032 { 00033 *it = toupper(*it); 00034 it++; 00035 } 00036 }