![]() |
|
|
Generated: 18 Jul 2008 |
#include <Grammars.h>
Inheritance diagram for Gaudi::Parsers::StringGrammar:


Definition at line 229 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 |
Definition at line 235 of file Grammars.h.
| void Gaudi::Parsers::StringGrammar::matchString | ( | ) | const [inline] |
remove CR/LF symbols form the parsed strings
Definition at line 244 of file Grammars.h.
References std::isspace().
Referenced by Gaudi::Parsers::StringGrammar::definition< ScannerT >::definition().
00245 { 00246 for ( std::string::iterator cur=this->val().begin(); 00247 cur!=this->val().end();cur++) 00248 { if(std::isspace(*cur) ) { *cur = ' '; } } 00249 }