Ptr::*

Ptr::*
SF_INLINE C& operator *() const;
Description

Pointer dereference operator converts the object from a pointer to a reference. This is commonly used when creating an object with operator new, in order to avoid having an object start with a refcount of 2.

Return Value

Returns a reference of the object that is held by the smart pointer.

See Also