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
|
#ifndef ServiceRegistry_ServiceLegacy_h
#define ServiceRegistry_ServiceLegacy_h
// -*- C++ -*-
//
// Package: ServiceRegistry
// Class : ServiceLegacy
//
/**\class ServiceLegacy ServiceLegacy.h FWCore/ServiceRegistry/interface/ServiceLegacy.h
Description: Enumeration of how Services inherit from other Service sets
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Wed Sep 7 13:42:29 EDT 2005
//
// system include files
// user include files
// forward declarations
namespace edm {
namespace serviceregistry {
enum ServiceLegacy { kOverlapIsError, kTokenOverrides, kConfigurationOverrides };
}
} // namespace edm
#endif
|