|
Gaudi Framework, version v21r4 |
| Home | Generated: 7 Sep 2009 |
#include <Grammars.h>
Definition at line 239 of file Grammars.h.
Public Types | |
| typedef std::string | ResultT |
Public Member Functions | |
| void | matchString () const |
| remove CR/LF symbols form the parsed strings | |
Classes | |
| struct | definition |
| typedef std::string Gaudi::Parsers::StringGrammar::ResultT |
Definition at line 245 of file Grammars.h.
| void Gaudi::Parsers::StringGrammar::matchString | ( | ) | const [inline] |
remove CR/LF symbols form the parsed strings
Definition at line 254 of file Grammars.h.
00255 { 00256 for ( std::string::iterator cur=this->val().begin(); 00257 cur!=this->val().end();cur++) 00258 { if(std::isspace(*cur) ) { *cur = ' '; } } 00259 }