Function CSPPtr<T>::operator ->()
Description:
Selects a member of the object pointed to by the contained pointer.
 |
Prototype:
T* operator ->() const;
Arguments:
No arguments (void).
Return value:
Returns the contained pointer on which the member selection operator will apply.
Examples:
CSPPtr<MyClass> sp; sp = new MyClass; sp->MyFunc();
|
|