Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:02

0001 #ifndef ServiceRegistry_ServicePluginFactory_h
0002 #define ServiceRegistry_ServicePluginFactory_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     ServiceRegistry
0006 // Class  :     ServicePluginFactory
0007 //
0008 /**\class ServicePluginFactory ServicePluginFactory.h FWCore/ServiceRegistry/interface/ServicePluginFactory.h
0009 
0010  Description: <one line class summary>
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Mon Sep  5 13:33:00 EDT 2005
0019 //
0020 
0021 // system include files
0022 #include "FWCore/PluginManager/interface/PluginFactory.h"
0023 
0024 // user include files
0025 
0026 // forward declarations
0027 namespace edm {
0028   namespace serviceregistry {
0029     class ServiceMakerBase;
0030 
0031     typedef edmplugin::PluginFactory<ServiceMakerBase*()> ServicePluginFactory;
0032   }  // namespace serviceregistry
0033 }  // namespace edm
0034 
0035 #endif