#include <gtest.h>
Public Types | |
typedef T | element_type |
Public Member Functions | |
T * | get () const |
linked_ptr (T *ptr=NULL) | |
template<typename U > | |
linked_ptr (linked_ptr< U > const &ptr) | |
linked_ptr (linked_ptr const &ptr) | |
bool | operator!= (T *p) const |
template<typename U > | |
bool | operator!= (linked_ptr< U > const &ptr) const |
T & | operator* () const |
T * | operator-> () const |
template<typename U > | |
linked_ptr & | operator= (linked_ptr< U > const &ptr) |
linked_ptr & | operator= (linked_ptr const &ptr) |
bool | operator== (T *p) const |
template<typename U > | |
bool | operator== (linked_ptr< U > const &ptr) const |
void | reset (T *ptr=NULL) |
~linked_ptr () | |
Private Member Functions | |
void | capture (T *ptr) |
template<typename U > | |
void | copy (linked_ptr< U > const *ptr) |
void | depart () |
Private Attributes | |
linked_ptr_internal | link_ |
T * | value_ |
Friends | |
class | linked_ptr |
typedef T testing::internal::linked_ptr< T >::element_type |
testing::internal::linked_ptr< T >::linked_ptr | ( | T * | ptr = NULL | ) | [inline, explicit] |
testing::internal::linked_ptr< T >::~linked_ptr | ( | ) | [inline] |
testing::internal::linked_ptr< T >::linked_ptr | ( | linked_ptr< U > const & | ptr | ) | [inline] |
testing::internal::linked_ptr< T >::linked_ptr | ( | linked_ptr< T > const & | ptr | ) | [inline] |
void testing::internal::linked_ptr< T >::capture | ( | T * | ptr | ) | [inline, private] |
void testing::internal::linked_ptr< T >::copy | ( | linked_ptr< U > const * | ptr | ) | [inline, private] |
void testing::internal::linked_ptr< T >::depart | ( | ) | [inline, private] |
T* testing::internal::linked_ptr< T >::get | ( | ) | const [inline] |
bool testing::internal::linked_ptr< T >::operator!= | ( | T * | p | ) | const [inline] |
bool testing::internal::linked_ptr< T >::operator!= | ( | linked_ptr< U > const & | ptr | ) | const [inline] |
T& testing::internal::linked_ptr< T >::operator* | ( | ) | const [inline] |
T* testing::internal::linked_ptr< T >::operator-> | ( | ) | const [inline] |
linked_ptr& testing::internal::linked_ptr< T >::operator= | ( | linked_ptr< U > const & | ptr | ) | [inline] |
linked_ptr& testing::internal::linked_ptr< T >::operator= | ( | linked_ptr< T > const & | ptr | ) | [inline] |
bool testing::internal::linked_ptr< T >::operator== | ( | T * | p | ) | const [inline] |
bool testing::internal::linked_ptr< T >::operator== | ( | linked_ptr< U > const & | ptr | ) | const [inline] |
void testing::internal::linked_ptr< T >::reset | ( | T * | ptr = NULL | ) | [inline] |
friend class linked_ptr [friend] |
linked_ptr_internal testing::internal::linked_ptr< T >::link_ [private] |
T* testing::internal::linked_ptr< T >::value_ [private] |