CMS 3D CMS Logo

Clonable.h

Go to the documentation of this file.
00001 // Author : Samvel Khalatian (samvel at fnal dot gov)
00002 // Created: 05/31/07
00003 // License: GPL
00004 
00005 #ifndef CLONABLE_H
00006 #define CLONABLE_H
00007 
00014 class Clonable {
00015   public:
00016     virtual ~Clonable() {}
00017 
00018   protected:
00028     virtual Clonable *clone() const = 0;
00029 
00039     inline virtual Clonable *cloneTxt() const { return clone(); }
00040     
00050     inline virtual Clonable *cloneXML() const { return clone(); }
00051 };
00052 
00053 #endif // CLONABLE_H

Generated on Tue Jun 9 17:25:52 2009 for CMSSW by  doxygen 1.5.4