00001 /*---------------------------------------------------------------------- 00002 $Id: SelectorBase.cc,v 1.3 2008/05/12 18:14:08 wmtan Exp $ 00003 ----------------------------------------------------------------------*/ 00004 00005 #include "FWCore/Framework/interface/SelectorBase.h" 00006 #include "DataFormats/Provenance/interface/ConstBranchDescription.h" 00007 00008 namespace edm 00009 { 00010 00011 //------------------------------------------------------------------ 00012 // 00013 // SelectorBase 00014 // 00015 //------------------------------------------------------------------ 00016 SelectorBase::~SelectorBase() 00017 { } 00018 00019 bool 00020 SelectorBase::match(ConstBranchDescription const& p) const 00021 { 00022 return doMatch(p); 00023 } 00024 }