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

www.micronovae.com

Copyright © 2002 - 2005 Micronovae Ltd