1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#ifndef ServiceRegistry_ServicePluginFactory_h
#define ServiceRegistry_ServicePluginFactory_h
// -*- C++ -*-
//
// Package: ServiceRegistry
// Class : ServicePluginFactory
//
/**\class ServicePluginFactory ServicePluginFactory.h FWCore/ServiceRegistry/interface/ServicePluginFactory.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Mon Sep 5 13:33:00 EDT 2005
//
// system include files
#include "FWCore/PluginManager/interface/PluginFactory.h"
// user include files
// forward declarations
namespace edm {
namespace serviceregistry {
class ServiceMakerBase;
typedef edmplugin::PluginFactory<ServiceMakerBase*()> ServicePluginFactory;
} // namespace serviceregistry
} // namespace edm
#endif
|