Is it possible to extract a raw pointer from a std::shared_ptr
or std::tr1::shared_ptr
object? The intent is to tell the smart pointer object that I don't want it to manage the lifetime of the object anymore. The context is that I have an API that takes a raw pointer from users and does some processing on the object. To make things easier to manage API creates a shared_ptr
out of this raw pointer. Now, the user might ask for the object to be returned. In that case, when giving the processed object back to the user I want to give back the raw pointer. However, I have not found a way to do that. Using .get()
is not possible as then the smart pointer will have to be kept alive indefinitely. I would have given back a unique_ptr
but that is not available in tr1
.
Basically I want to move the raw pointer out of the shared_ptr.