|
Gaudi Framework, version v21r6 |
| Home | Generated: 11 Nov 2009 |
#include <Grammars.h>
Definition at line 241 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 247 of file Grammars.h.
| void Gaudi::Parsers::StringGrammar::matchString | ( | ) | const [inline] |
remove CR/LF symbols form the parsed strings
Definition at line 256 of file Grammars.h.
00257 { 00258 for ( std::string::iterator cur=this->val().begin(); 00259 cur!=this->val().end();cur++) 00260 { if(std::isspace(*cur) ) { *cur = ' '; } } 00261 }