00001 #ifndef _CTBretObj_HXX 00002 #define _CTBretObj_HXX 1 00003 00008 /*----------------------------------------------------------------------------*/ 00009 /* C Tool Box: Designed and implemented by: */ 00010 /* Walter F.J. Mueller Gesellschaft fuer Schwerionenforschung (GSI) */ 00011 /* Planckstrasse 1, D-64291 Darmstadt, Germany */ 00012 /* Email: W.F.J.Mueller@gsi.de */ 00013 /* WWW: http://www-kp3.gsi.de/www/kp3/people/mueller.html */ 00014 /*------------------------------------------+---------------------------------*/ 00015 00016 template <class T> 00017 class CTBretObj : public T{ 00018 public: 00019 CTBretObj(); 00020 CTBretObj(CTBretObj<T>& rhs); 00021 CTBretObj(T& rhs); 00022 00023 CTBretObj<T>& operator=(CTBretObj<T>& rhs); 00024 CTBretObj<T>& operator=(T& rhs); 00025 }; 00026 00027 // 00028 // the implementation is fully inlined and always included here 00029 // 00030 #include "CTBretObj.icc" 00031 00032 #endif