Home | History | Annotate | Download | only in internal

Lines Matching defs:scoped_ptr

148 //   scoped_ptr     - as in TR2.
774 // Defines scoped_ptr.
776 // This implementation of scoped_ptr is PARTIAL - it only contains
779 class scoped_ptr {
783 explicit scoped_ptr(T* p = NULL) : ptr_(p) {}
784 ~scoped_ptr() { reset(); }
807 GTEST_DISALLOW_COPY_AND_ASSIGN_(scoped_ptr);