Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The assignment operator.
template< >
CAutoPtr< T > & operator =(
CAutoPtr< T > & p
);
template< typename TSrc >
CAutoPtr< T > & operator =(
CAutoPtr< TSrc > & p
);
Parameters
p
A pointer.TSrc
A class type.
Return Value
Returns a reference to a CAutoPtr< T >.
Remarks
The assignment operator detaches the CAutoPtr object from any current pointer and attaches the new pointer, p, in its place.
Example
See the example in the CAutoPtr Overview.
Requirements
Header: atlbase.h