Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef FWCore_PluginManager_DummyFactory_h
0002 #define FWCore_PluginManager_DummyFactory_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     PluginManager
0006 // Class  :     DummyFactory
0007 //
0008 /**\class DummyFactory DummyFactory.h FWCore/PluginManager/interface/DummyFactory.h
0009 
0010  Description: <one line class summary>
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Fri Apr  6 15:26:43 EDT 2007
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 #include "FWCore/PluginManager/interface/PluginFactory.h"
0025 
0026 // forward declarations
0027 namespace testedmplugin {
0028   struct DummyBase {
0029     virtual ~DummyBase();
0030     virtual int value() const = 0;
0031   };
0032 
0033   typedef edmplugin::PluginFactory<DummyBase*(void)> DummyFactory;
0034 }  // namespace testedmplugin
0035 
0036 #endif