Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Framework_DepRecord_h
0002 #define Framework_DepRecord_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Framework
0006 // Class  :     DepRecord
0007 //
0008 /**\class DepRecord DepRecord.h FWCore/Framework/test/DepRecord.h
0009 
0010  Description: A test Record that is dependent on DummyRecord
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Wed Jun 22 19:46:32 EDT 2005
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 
0025 // forward declarations
0026 #include "FWCore/Framework/interface/DependentRecordImplementation.h"
0027 #include "FWCore/Framework/test/DummyRecord.h"
0028 
0029 class DepRecord : public edm::eventsetup::DependentRecordImplementation<DepRecord, edm::mpl::Vector<DummyRecord> > {};
0030 
0031 #endif