W3cubDocs

/C++

std::auto_ptr::operator*, std::auto_ptr::operator->

T& operator*() const;
(1) (deprecated)
T* operator->() const;
(2) (deprecated)

Dereferences a pointer to the managed object. The first version requires get() != 0.

Parameters

(none).

Return value

1) *get().
2) get().

Exceptions

(none).

See also

returns a pointer to the managed object
(public member function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/memory/auto_ptr/operator_star_