Function CSPPtr<T>::operator *()
Description:
Retrieves a reference to the object pointed to by the contained pointer.
 |
Prototype:
T& operator *() const;
Arguments:
No arguments (void).
Return value:
Returns a reference to the object pointed to by the contained pointer.
Examples:
CSPPtr<char> sp; .... char p = *sp;
See also:
member function operator & ()
|
|