Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  master (f31105fd)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 53 of file Grammar.h.

Constructor & Destructor Documentation

◆ SkipperGrammar() [1/2]

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

Definition at line 54 of file Grammar.h.

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

◆ SkipperGrammar() [2/2]

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

Definition at line 90 of file Grammars.h.

90  : SkipperGrammar::base_type( comments ) {
91  comments = enc::space | rep::confix( "/*", "*/" )[*( qi::char_ - "*/" )] |
92  rep::confix( "//", ( sp::eol | sp::eoi ) )[*( qi::char_ - ( sp::eol | sp::eoi ) )];
93  }

Member Data Documentation

◆ comments

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

Definition at line 58 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:58