HomeSort by: relevance | last modified time | path
    Searched defs:smart_ptr (Results 1 - 3 of 3) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
pr17132.cc 23 class smart_ptr class
26 smart_ptr (T *obj) : _obj (obj) { } function in class:smart_ptr
27 ~smart_ptr () { delete _obj; }
37 smart_ptr<T>::operator-> ()
58 smart_ptr<A> a (new A);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
pr17132.cc 23 class smart_ptr class
26 smart_ptr (T *obj) : _obj (obj) { } function in class:smart_ptr
27 ~smart_ptr () { delete _obj; }
37 smart_ptr<T>::operator-> ()
58 smart_ptr<A> a (new A);
  /src/external/bsd/elftosb/dist/common/
smart_ptr.h 2 * smart_ptr.h
18 class smart_ptr class
28 smart_ptr() : _p(0) {} function in class:smart_ptr
31 smart_ptr(ptr_type p) : _p(p) {} function in class:smart_ptr
35 virtual ~smart_ptr() { safe_delete(); }
93 smart_ptr<T> & operator = (const_ptr_type p)
122 * This is almost entirely a copy of smart_ptr since the final C++ specification

Completed in 18 milliseconds