template<class type>
Makes a copy of the referenced object and returns a holder pointing to the new copy Definition at line 439 of file FXRefedObject.h. 00440 { 00441 FXAutoPtr<type> v; 00442 type *pv=PtrPtr(p); 00443 assert(pv); 00444 FXERRHM(v=new type(*pv)); 00445 return FXRefingObject(v); 00446 }
|