Gaudi::Parsers::SkipperGrammar< Iterator > Struct Template Reference

#include <src/JobOptionsSvc/Grammar.h>

Inheritance diagram for Gaudi::Parsers::SkipperGrammar< Iterator >:
Collaboration diagram for Gaudi::Parsers::SkipperGrammar< Iterator >:

Public Member Functions

 SkipperGrammar ()
 
 SkipperGrammar ()
 

Public Attributes

qi::rule< Iteratorcomments
 

Detailed Description

template<typename Iterator>
struct Gaudi::Parsers::SkipperGrammar< Iterator >

Definition at line 45 of file Grammar.h.

Constructor & Destructor Documentation

template<typename Iterator >
Gaudi::Parsers::SkipperGrammar< Iterator >::SkipperGrammar ( )
inline

Definition at line 46 of file Grammar.h.

46  : SkipperGrammar::base_type(comments) {
47  comments = enc::space
48  | rep::confix("/*", "*/")[*(qi::char_ - "*/")]
49  | rep::confix("//", (sp::eol | sp::eoi))[*(qi::char_ - (sp::eol | sp::eoi))];
50  }
qi::rule< Iterator > comments
Definition: Grammar.h:51
template<typename Iterator >
Gaudi::Parsers::SkipperGrammar< Iterator >::SkipperGrammar ( )
inline

Definition at line 79 of file GrammarsV2.h.

79  : SkipperGrammar::base_type(comments) {
80  comments = enc::space | rep::confix("/*", "*/")[*(qi::char_ - "*/")]
81  |
82  rep::confix("//", (sp::eol | sp::eoi))[*(qi::char_ - (sp::eol|sp::eoi))];
83  }
qi::rule< Iterator > comments
Definition: Grammar.h:51

Member Data Documentation

template<typename Iterator >
qi::rule< Iterator > Gaudi::Parsers::SkipperGrammar< Iterator >::comments

Definition at line 51 of file Grammar.h.


The documentation for this struct was generated from the following files: