Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:19

0001 #ifndef CommonTools_Utils_findMethod_h
0002 #define CommonTools_Utils_findMethod_h
0003 #include "FWCore/Reflection/interface/FunctionWithDict.h"
0004 #include "FWCore/Reflection/interface/TypeWithDict.h"
0005 #include <string>
0006 #include "CommonTools/Utils/interface/parser/AnyMethodArgument.h"
0007 
0008 namespace reco {
0009   // second pair member is true if a reference is found
0010   // of type edm::Ref, edm::RefToBase or edm::Ptr
0011   std::pair<edm::FunctionWithDict, bool> findMethod(const edm::TypeWithDict& type,
0012                                                     const std::string& name,
0013                                                     const std::vector<reco::parser::AnyMethodArgument>& args,
0014                                                     std::vector<reco::parser::AnyMethodArgument>& fixuppedArgs,
0015                                                     const char* where,
0016                                                     int& oError);
0017 }  // namespace reco
0018 
0019 #endif