CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/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 // $Id: ConstPtrCache.h,v 1.1 2007/08/20 13:55:58 chrjones Exp $
00021 //
00022 
00023 // system include files
00024 
00025 // user include files
00026 
00027 // forward declarations
00028 namespace edm {
00029 class ConstPtrCache
00030 {
00031 
00032    public:
00033    ConstPtrCache() : ptr_(0) {}
00034   ConstPtrCache(const void* iPtr) : ptr_(iPtr) {}
00035   
00036    const void* ptr_;
00037 };
00038 
00039 }
00040 #endif