CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_5/src/DataFormats/Common/interface/IntValues.h

Go to the documentation of this file.
00001 #ifndef DataFormats_Common_IntValues_h
00002 #define DataFormats_Common_IntValues_h
00003 // -*- C++ -*-
00004 //
00005 // Package:     Common
00006 // Class  :     IntValues
00007 // 
00015 //
00016 // Original Author:  Chris Jones
00017 //         Created:  Wed Oct 31 16:23:41 EDT 2007
00018 //
00019 
00020 // system include files
00021 
00022 // user include files
00023 
00024 // forward declarations
00025 
00026 namespace test_with_dictionaries {
00027   struct IntValue {
00028     int value_;
00029     IntValue(int iValue): value_(iValue) {}
00030   };
00031   
00032   struct IntValue2 : public IntValue {
00033     IntValue2(int iValue2): IntValue(iValue2) {}
00034   };
00035 }
00036 
00037 #endif