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


Classes | |
| struct | Operations |
Public Types | |
| typedef PointT | ResultT |
| typedef PointT::Scalar | Scalar |
Public Member Functions | |
| Pnt3DGrammar () | |
Public Attributes | |
| qi::rule< Iterator, ResultT(), Skipper > | point |
| qi::rule< Iterator, ResultT(), Skipper > | list |
| Grammar_< Iterator, Scalar, Skipper >::Grammar | scalar |
| ph::function< Operations > | op |
Definition at line 364 of file GrammarsV2.h.
| typedef PointT Gaudi::Parsers::Pnt3DGrammar< Iterator, PointT, Skipper >::ResultT |
Definition at line 365 of file GrammarsV2.h.
| typedef PointT::Scalar Gaudi::Parsers::Pnt3DGrammar< Iterator, PointT, Skipper >::Scalar |
Definition at line 366 of file GrammarsV2.h.
| Gaudi::Parsers::Pnt3DGrammar< Iterator, PointT, Skipper >::Pnt3DGrammar | ( | ) | [inline] |
Definition at line 384 of file GrammarsV2.h.
: Pnt3DGrammar::base_type(point) {
point = list | ('(' >> list >> ')') | ('[' >> list >> ']');
list = -(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, ResultT(), Skipper> Gaudi::Parsers::Pnt3DGrammar< Iterator, PointT, Skipper >::list |
Definition at line 394 of file GrammarsV2.h.
| ph::function<Operations> Gaudi::Parsers::Pnt3DGrammar< Iterator, PointT, Skipper >::op |
Definition at line 396 of file GrammarsV2.h.
| qi::rule<Iterator, ResultT(), Skipper> Gaudi::Parsers::Pnt3DGrammar< Iterator, PointT, Skipper >::point |
Definition at line 394 of file GrammarsV2.h.
| Grammar_<Iterator, Scalar, Skipper>::Grammar Gaudi::Parsers::Pnt3DGrammar< Iterator, PointT, Skipper >::scalar |
Definition at line 395 of file GrammarsV2.h.