Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:52

0001 #ifndef FWCore_ParameterSet_ParameterSetTraits_h
0002 #define FWCore_ParameterSet_ParameterSetTraits_h
0003 
0004 #include "FWCore/Utilities/interface/value_ptr.h"
0005 
0006 namespace edm {
0007 
0008   class ParameterSetDescription;
0009 
0010   template <>
0011   struct value_ptr_traits<ParameterSetDescription> {
0012     static ParameterSetDescription* clone(ParameterSetDescription const* p);
0013     static void destroy(ParameterSetDescription* p);
0014   };
0015 }  // namespace edm
0016 #endif