CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
Book::match_name Struct Reference

Public Member Functions

 match_name (string_t re)
 
bool operator() (const book_t::const_iterator::value_type &p)
 

Private Attributes

boost::regex expression
 

Detailed Description

Definition at line 26 of file Book.h.

Constructor & Destructor Documentation

◆ match_name()

Book::match_name::match_name ( string_t  re)
inline

Definition at line 27 of file Book.h.

27 : expression(re) {}
boost::regex expression
Definition: Book.h:31

Member Function Documentation

◆ operator()()

bool Book::match_name::operator() ( const book_t::const_iterator::value_type &  p)
inline

Definition at line 28 of file Book.h.

References expression, and AlCaHLTBitMon_ParallelJobs::p.

28 { return regex_match(p.first, expression); }
boost::regex expression
Definition: Book.h:31

Member Data Documentation

◆ expression

boost::regex Book::match_name::expression
private

Definition at line 31 of file Book.h.

Referenced by operator()().