I want to use smart pointer in my c++ application.
Which header file I should include for using std scoped_ptr?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no scoped_ptr in the standard C++ library. All C++11 smart pointers are in header
<memory>. If you want boost::scoped_ptr then you needboost/scoped_ptr.hpp.