Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef DataFormats_Common_IntValues_h
0002 #define DataFormats_Common_IntValues_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Common
0006 // Class  :     IntValues
0007 //
0008 /**\class IntValues IntValues.h DataFormats/Common/interface/IntValues.h
0009 
0010  Description: Classes used for simple tests
0011  Usage:
0012     <usage>
0013 
0014 */
0015 //
0016 // Original Author:  Chris Jones
0017 //         Created:  Wed Oct 31 16:23:41 EDT 2007
0018 //
0019 
0020 // system include files
0021 
0022 // user include files
0023 
0024 // forward declarations
0025 
0026 namespace test_with_dictionaries {
0027   struct IntValue {
0028     int value_;
0029     IntValue(int iValue) : value_(iValue) {}
0030   };
0031 
0032   struct IntValue2 : public IntValue {
0033     IntValue2(int iValue2) : IntValue(iValue2) {}
0034   };
0035 }  // namespace test_with_dictionaries
0036 
0037 #endif