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