|
Gaudi Framework, version v22r2 |
| Home | Generated: Tue May 10 2011 |
The valid represenation of string values are: More...
#include <Grammars.h>


Classes | |
| struct | definition |
Public Types | |
| typedef std::string | ResultT |
Public Member Functions | |
| void | matchString () const |
| remove CR/LF symbols form the parsed strings | |
The valid represenation of string values are:
Definition at line 241 of file Grammars.h.
| 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.
{
for ( std::string::iterator cur=this->val().begin();
cur!=this->val().end();cur++)
{ if(std::isspace(*cur) ) { *cur = ' '; } }
}