Back to home page

Project CMSSW displayed by LXR

 
 

    


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

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