Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Integration_WhatsIt_h
0002 #define Integration_WhatsIt_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Integration
0006 // Class  :     WhatsIt
0007 //
0008 /**\class WhatsIt WhatsIt.h FWCore/Integration/interface/WhatsIt.h
0009 
0010  Description: Dummy class used to test the EventSetup in the integration test
0011 
0012  Usage:
0013     Not actually usable :)
0014 
0015 */
0016 //
0017 // Original Author:  Chris Jones
0018 //         Created:  Fri Jun 24 13:23:12 EDT 2005
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 
0025 // forward declarations
0026 
0027 namespace edmtest {
0028   struct WhatsIt {
0029     WhatsIt() : a() {}
0030     int a;
0031   };
0032 }  // namespace edmtest
0033 
0034 #endif