The Gaudi Framework  master (37c0b60a)
Gaudi::Parsers::SkipperGrammar< Iterator > Struct Template Reference

#include </builds/gaudi/Gaudi/GaudiCoreSvc/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 51 of file Grammar.h.

Constructor & Destructor Documentation

◆ SkipperGrammar() [1/2]

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

Definition at line 52 of file Grammar.h.

52  : SkipperGrammar::base_type( comments ) {
53  comments = enc::space | rep::confix( "/*", "*/" )[*( qi::char_ - "*/" )] |
54  rep::confix( "//", ( sp::eol | sp::eoi ) )[*( qi::char_ - ( sp::eol | sp::eoi ) )];
55  }

◆ SkipperGrammar() [2/2]

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

Definition at line 86 of file Grammars.h.

86  : SkipperGrammar::base_type( comments ) {
87  comments = enc::space | rep::confix( "/*", "*/" )[*( qi::char_ - "*/" )] |
88  rep::confix( "//", ( sp::eol | sp::eoi ) )[*( qi::char_ - ( sp::eol | sp::eoi ) )];
89  }

Member Data Documentation

◆ comments

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

Definition at line 56 of file Grammar.h.


The documentation for this struct was generated from the following files:
Gaudi::Parsers::SkipperGrammar::comments
qi::rule< Iterator > comments
Definition: Grammar.h:56