|
Gaudi Framework, version v23r4 |
| Home | Generated: Mon Sep 17 2012 |
#include <GrammarsV2.h>


Classes | |
| struct | Operations |
Public Types | |
| typedef PointT | ResultT |
| typedef PointT::Scalar | ScalarT |
Public Member Functions | |
| Pnt4DGrammar () | |
Public Attributes | |
| qi::rule< Iterator, ResultT(), Skipper > | point3d |
| qi::rule< Iterator, ResultT(), Skipper > | point4d |
| qi::rule< Iterator, ResultT(), Skipper > | list3d |
| qi::rule< Iterator, ResultT(), Skipper > | list4d |
| qi::rule< Iterator, ScalarT(), Skipper > | e |
| Grammar_< Iterator, ScalarT, Skipper >::Grammar | scalar |
| ph::function< Operations > | op |
Definition at line 419 of file GrammarsV2.h.
| typedef PointT Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::ResultT |
Definition at line 421 of file GrammarsV2.h.
| typedef PointT::Scalar Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::ScalarT |
Definition at line 422 of file GrammarsV2.h.
| Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::Pnt4DGrammar | ( | ) | [inline] |
Definition at line 447 of file GrammarsV2.h.
: Pnt4DGrammar::base_type(point4d) {
point4d = list4d | ('(' >> list4d >> ')') | ('[' >> list4d >> ']');
list4d = (point3d[op(qi::_val,qi::_1)] >> enc::char_(";,")
>> e[op(qi::_val, qi::_1, 'e')])
|
(e[op(qi::_val,qi::_1, 'e')] >> enc::char_(";,")
>> point3d[op(qi::_val, qi::_1)]);
e = -(enc::no_case[enc::char_("te")] >> ':')
>> scalar[qi::_val = qi::_1];
point3d = list3d | ('(' >> list3d >> ')') | ('[' >> list3d >> ']');
list3d = -(enc::no_case[qi::lit("x") | qi::lit("px")] >> ':')
>> scalar[op(qi::_val, qi::_1,'x')] >>
',' >> -(enc::no_case[qi::lit("y") | qi::lit("py")] >> ':')
>> scalar[op(qi::_val, qi::_1,'y')] >>
',' >> -(enc::no_case[qi::lit("z") | qi::lit("pz")] >> ':')
>> scalar[op(qi::_val, qi::_1,'z')];
}
| qi::rule<Iterator, ScalarT(), Skipper> Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::e |
Definition at line 468 of file GrammarsV2.h.
| qi::rule<Iterator, ResultT(), Skipper> Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::list3d |
Definition at line 466 of file GrammarsV2.h.
| qi::rule<Iterator, ResultT(), Skipper> Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::list4d |
Definition at line 466 of file GrammarsV2.h.
| ph::function<Operations> Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::op |
Definition at line 470 of file GrammarsV2.h.
| qi::rule<Iterator, ResultT(), Skipper> Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::point3d |
Definition at line 466 of file GrammarsV2.h.
| qi::rule<Iterator, ResultT(), Skipper> Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::point4d |
Definition at line 466 of file GrammarsV2.h.
| Grammar_<Iterator, ScalarT, Skipper>::Grammar Gaudi::Parsers::Pnt4DGrammar< Iterator, PointT, Skipper >::scalar |
Definition at line 469 of file GrammarsV2.h.