If you want to prevent transfer of ownership, you can use a const std::unique_ptr<T>
. This is not very useful.
If you want to prevent modifying the object it holds, you can use a std::unique_ptr<const T>
.
If you want to prevent transfer of ownership, you can use a const std::unique_ptr<T>
. This is not very useful.
If you want to prevent modifying the object it holds, you can use a std::unique_ptr<const T>
.