Home | History | Annotate | Download | only in internal

Lines Matching defs:scoped_ptr

157 //   scoped_ptr     - as in TR2.
885 // Defines scoped_ptr.
887 // This implementation of scoped_ptr is PARTIAL - it only contains
890 class scoped_ptr {
894 explicit scoped_ptr(T* p = NULL) : ptr_(p) {}
895 ~scoped_ptr() { reset(); }
919 GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr);