Function CSPPtr<T>::Free()
Description:
Deletes the object pointed to by the contained pointer, and sets the contained pointer to null.
 |
Prototype:
void Free();
Arguments:
No arguments (void).
Return value:
No return value (void).
Examples:
CSPPtr<char> sp; sp.New(); ... sp.Free();
See also:
member functions New(), New( const T& )
|
|