|
Gaudi Framework, version v23r2p1 |
| Home | Generated: Fri Jun 29 2012 |
The valid represenation of boolean values are: More...
#include <Grammar.h>


Classes | |
| struct | definition |
Public Types | |
| typedef bool | ResultT |
| typedef bool | ResultT |
| typedef bool | ResultT |
Public Member Functions | |
| BoolGrammar () | |
| BoolGrammar () | |
Public Attributes | |
| qi::rule< Iterator, bool(), Skipper > | boolean |
| qi::rule< Iterator, bool(), Skipper > | boolean_literal |
The valid represenation of boolean values are:
Definition at line 86 of file Grammar.h.
| typedef bool Gaudi::Parsers::BoolGrammar< Iterator, Skipper >::ResultT |
Definition at line 128 of file GrammarsV2.h.
| typedef bool Gaudi::Parsers::BoolGrammar< Iterator, Skipper >::ResultT |
Definition at line 106 of file Grammars.h.
| Gaudi::Parsers::BoolGrammar< Iterator, Skipper >::BoolGrammar | ( | ) | [inline] |
| Gaudi::Parsers::BoolGrammar< Iterator, Skipper >::BoolGrammar | ( | ) | [inline] |
Definition at line 129 of file GrammarsV2.h.
: BoolGrammar::base_type( boolean_literal ) {
boolean_literal =
(qi::lit("true") | "True" | "TRUE" | "1")[qi::_val=true]
|
(qi::lit("false") | "False" | "FALSE" | "0")[qi::_val=false];
}
| qi::rule<Iterator, bool(), Skipper> Gaudi::Parsers::BoolGrammar< Iterator, Skipper >::boolean_literal |
Definition at line 135 of file GrammarsV2.h.