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();
CSPPtr<T> | Template classes | Class Categories | Online help home | Back

www.micronovae.com

Copyright © 2002 - 2005 Micronovae Ltd