Searched defs:scoped_ptr (Results 1 – 7 of 7) sorted by relevance
47 template<class T> class scoped_ptr // noncopyable class65 explicit scoped_ptr( T * p = 0 ) BOOST_SP_NOEXCEPT : px( p ) in scoped_ptr() function in boost::scoped_ptr74 explicit scoped_ptr( std::auto_ptr<T> p ) BOOST_SP_NOEXCEPT : px( p.release() ) in scoped_ptr() function in boost::scoped_ptr
11 scoped_ptr() : ptr_(NULL) {} in scoped_ptr() function12 explicit scoped_ptr(T *ptr) : ptr_(ptr) {} in scoped_ptr() function
23 class scoped_ptr class27 explicit scoped_ptr(T* p = 0) in scoped_ptr() function in asio::detail::scoped_ptr
27 class scoped_ptr class31 explicit scoped_ptr(T* p = 0) in scoped_ptr() function in boost::asio::detail::scoped_ptr
10 [#scoped_ptr] anchor
35 ScopedLocalAlloc scoped_ptr = TakeLocalAlloc(ptr); in TEST() local
231 template < class > class scoped_ptr { class