The valid represenation of boolean values are:
More...
#include <src/JobOptionsSvc/Grammar.h>
template<typename Iterator, typename Skipper>
class Gaudi::Parsers::BoolGrammar< Iterator, Skipper >
The valid represenation of boolean values are:
- true , True , TRUE or 1
- false , False , FALSE or 0
- Author
- Alexander MAZUROV Alexa.nosp@m.nder.nosp@m..Mazu.nosp@m.rov@.nosp@m.gmail.nosp@m..com
-
Vanya BELYAEV ibely.nosp@m.aev@.nosp@m.physi.nosp@m.cs.s.nosp@m.yr.ed.nosp@m.u
- Date
- 2006-05-14
Definition at line 95 of file Grammar.h.
template<typename Iterator, typename Skipper>
template<typename Iterator, typename Skipper>
template<typename Iterator, typename Skipper>
template<typename Iterator, typename Skipper>
Definition at line 99 of file Grammar.h.
99 : BoolGrammar::base_type(
boolean) {
100 boolean = enc::no_case[
101 qi::lit(
"true")[qi::_val=
true]
103 qi::lit(
"false")[qi::_val=
false]
template<typename Iterator, typename Skipper>
Definition at line 129 of file GrammarsV2.h.
131 (qi::lit(
"true") |
"True" |
"TRUE" |
"1")[qi::_val=
true]
133 (qi::lit(
"false") |
"False" |
"FALSE" |
"0")[qi::_val=
false];
qi::rule< Iterator, bool(), Skipper > boolean_literal
template<typename Iterator, typename Skipper>
template<typename Iterator, typename Skipper>
The documentation for this class was generated from the following files: