Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef ServiceRegistry_test_DependsOnDummyService_h
0002 #define ServiceRegistry_test_DependsOnDummyService_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     ServiceRegistry
0006 // Class  :     DependsOnDummyService
0007 //
0008 /**\class DependsOnDummyService DependsOnDummyService.h FWCore/ServiceRegistry/test/stubs/DependsOnDummyService.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 19:51:59 EDT 2005
0019 //
0020 
0021 namespace edm {
0022   class ConfigurationDescriptions;
0023 }
0024 
0025 namespace testserviceregistry {
0026   class DependsOnDummyService {
0027   public:
0028     DependsOnDummyService();
0029     virtual ~DependsOnDummyService();
0030 
0031     int value() const { return value_; }
0032 
0033     static void fillDescriptions(edm::ConfigurationDescriptions& descriptions);
0034 
0035   private:
0036     DependsOnDummyService(const DependsOnDummyService&);                   // stop default
0037     const DependsOnDummyService& operator=(const DependsOnDummyService&);  // stop default
0038 
0039     int value_;
0040   };
0041 }  // namespace testserviceregistry
0042 #endif