I want to use smart pointer in my c++ application.
Which header file I should include for using std scoped_ptr?
|
I want to use smart pointer in my c++ application. Which header file I should include for using std scoped_ptr? |
|||
| show 1 more comment |
|
There is no scoped_ptr in the standard C++ library. All C++11 smart pointers are in header |
|||
|
|
|
|
|||
|
|
|
There is no |
|||
|
|
scoped_ptris not a standard smart pointer, it is provided by Boost. C++11 introducedstd::unique_ptr, which is similar toscoped_ptrwith the exception that it is movable. As to the headers where these can be found, this information can very easily be found in the respective documentations. – Luc Touraille Jul 23 '12 at 12:14boost::scoped_ptrandstd::unique_ptr, see this question and this one. – Luc Touraille Jul 23 '12 at 12:23