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