CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_13_patch3/src/DataFormats/Common/interface/CopyPolicy.h

Go to the documentation of this file.
00001 #ifndef DataFormats_Common_CopyPolicy_h
00002 #define DataFormats_Common_CopyPolicy_h
00003 
00004 namespace edm {
00005   template<typename T>
00006   struct CopyPolicy{
00007     static const T & clone(const T & t) {
00008       return t;
00009     }
00010   };
00011 }
00012 
00013 #endif