Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef FWCore_ParameterSet_PluginDescriptionAdaptorBase_h
0002 #define FWCore_ParameterSet_PluginDescriptionAdaptorBase_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     FWCore/ParameterSet
0006 // Class  :     PluginDescriptionAdaptorBase
0007 //
0008 /**\class PluginDescriptionAdaptorBase PluginDescriptionAdaptorBase.h "PluginDescriptionAdaptorBase.h"
0009 
0010  Description: Base class for the adaptor used to call fillPSetDescription of a plugin
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Wed, 19 Sep 2018 19:24:24 GMT
0019 //
0020 
0021 // system include files
0022 #include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
0023 
0024 // user include files
0025 
0026 // forward declarations
0027 
0028 namespace edm {
0029   template <typename T>
0030   class PluginDescriptionAdaptorBase {
0031   public:
0032     virtual ~PluginDescriptionAdaptorBase() = default;
0033 
0034     // ---------- const member functions ---------------------
0035     virtual edm::ParameterSetDescription description() const = 0;
0036   };
0037 }  // namespace edm
0038 #endif