CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DataFormats/Common/interface/ConstPtrCache.h

Go to the documentation of this file.
00001 #ifndef DataFormats_Common_ConstPtrCache_h
00002 #define DataFormats_Common_ConstPtrCache_h
00003 // -*- C++ -*-
00004 //
00005 // Package:     Common
00006 // Class  :     PtrCache
00007 // 
00017 //
00018 // Original Author:  Chris Jones
00019 //         Created:  Sat Aug 18 17:30:04 EDT 2007
00020 //
00021 
00022 // system include files
00023 
00024 // user include files
00025 
00026 // forward declarations
00027 namespace edm {
00028 class ConstPtrCache
00029 {
00030 
00031    public:
00032    ConstPtrCache() : ptr_(0) {}
00033   ConstPtrCache(const void* iPtr) : ptr_(iPtr) {}
00034   
00035    const void* ptr_;
00036 };
00037 
00038 }
00039 #endif