|
Gaudi Framework, version v21r4 |
| Home | Generated: 7 Sep 2009 |
#include <Grammars.h>
Definition at line 312 of file Grammars.h.
Public Member Functions | |
| definition (SkipperGrammar const &self) | |
| rule< ScannerT > const & | start () const |
Public Attributes | |
| rule< ScannerT > | skip |
| Gaudi::Parsers::SkipperGrammar::definition< ScannerT >::definition | ( | SkipperGrammar const & | self | ) | [inline] |
Definition at line 314 of file Grammars.h.
00315 { 00316 if ( self.skipnewline() ) 00317 { 00318 skip 00319 = space_p 00320 | comment_p("//") // C++ comment 00321 | comment_p("/*", "*/") // C comment 00322 ; 00323 } 00324 else 00325 { 00326 skip 00327 = (space_p-eol_p) 00328 | comment_p("//") // C++ comment 00329 | comment_p("/*", "*/") // C comment 00330 ; 00331 } 00332 }
| rule<ScannerT> const& Gaudi::Parsers::SkipperGrammar::definition< ScannerT >::start | ( | ) | const [inline] |
| rule<ScannerT> Gaudi::Parsers::SkipperGrammar::definition< ScannerT >::skip |
Definition at line 333 of file Grammars.h.