std::auto_ptr<T>::operator*,std::auto_ptr<T>::operator-> (3) - Linux Manuals
std::auto_ptr<T>::operator*,std::auto_ptr<T>::operator->: std::auto_ptr<T>::operator*,std::auto_ptr<T>::operator->
NAME
std::auto_ptr<T>::operator*,std::auto_ptr<T>::operator-> - std::auto_ptr<T>::operator*,std::auto_ptr<T>::operator->
Synopsis
T& operator*() const throw(); (1) (deprecated in C++11)
T* operator->() const throw(); (2) (deprecated in C++11)
Dereferences a pointer to the managed object. The first version requires get() != 0.
Parameters
(none)
Return value
1) *get().
2) get().
See also
get (public member function)