T& operator*() const; | (1) | (deprecated) |
T* operator->() const; | (2) | (deprecated) |
Dereferences a pointer to the managed object. The first version requires get() != 0
.
(none).
*get()
.get()
.(none).
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*