CMS 3D CMS Logo

IntValues.h
Go to the documentation of this file.
1 #ifndef DataFormats_Common_IntValues_h
2 #define DataFormats_Common_IntValues_h
3 // -*- C++ -*-
4 //
5 // Package: Common
6 // Class : IntValues
7 //
15 //
16 // Original Author: Chris Jones
17 // Created: Wed Oct 31 16:23:41 EDT 2007
18 //
19 
20 // system include files
21 
22 // user include files
23 
24 // forward declarations
25 
27  struct IntValue {
28  int value_;
29  IntValue(int iValue) : value_(iValue) {}
30  };
31 
32  struct IntValue2 : public IntValue {
33  IntValue2(int iValue2) : IntValue(iValue2) {}
34  };
35 } // namespace test_with_dictionaries
36 
37 #endif