Public Member Functions | Private Member Functions | List of all members
art::SelectorBase Class Referenceabstract

#include <SelectorBase.h>

Inheritance diagram for art::SelectorBase:
art::AndHelper< A, B > art::ComposedSelectorWrapper< T > art::MatchAllSelector art::ModuleLabelSelector art::NotHelper< A > art::OrHelper< A, B > art::ProcessNameSelector art::ProductInstanceNameSelector art::Selector

Public Member Functions

virtual ~SelectorBase ()=default
 
bool match (BranchDescription const &p) const
 
std::string print (std::string const &indent) const
 

Private Member Functions

virtual bool doMatch (BranchDescription const &p) const =0
 
virtual std::string doPrint (std::string const &indent) const =0
 

Detailed Description

Definition at line 37 of file SelectorBase.h.

Constructor & Destructor Documentation

virtual art::SelectorBase::~SelectorBase ( )
virtualdefault

Member Function Documentation

virtual bool art::SelectorBase::doMatch ( BranchDescription const &  p) const
privatepure virtual
virtual std::string art::SelectorBase::doPrint ( std::string const &  indent) const
privatepure virtual
bool art::SelectorBase::match ( BranchDescription const &  p) const
inline

Definition at line 41 of file SelectorBase.h.

42  {
43  return doMatch(p);
44  }
virtual bool doMatch(BranchDescription const &p) const =0
p
Definition: test.py:223
std::string art::SelectorBase::print ( std::string const &  indent) const
inline

Definition at line 47 of file SelectorBase.h.

48  {
49  return doPrint(indent);
50  }
virtual std::string doPrint(std::string const &indent) const =0

The documentation for this class was generated from the following file: