diff --git a/dune/common/shared_ptr.hh b/dune/common/shared_ptr.hh index 39c6dde472fffe24073c500d2a6a0665b137dc4c..5363cda72fc7af9e4757a78b9b98ac1914b85014 100644 --- a/dune/common/shared_ptr.hh +++ b/dune/common/shared_ptr.hh @@ -55,11 +55,22 @@ namespace Dune }; /** - @brief Convert a stack-allocated object to a shared_ptr: + @brief Create a shared_ptr for a stack-allocated object + @relatesalso null_deleter + @code + #include <dune/common/shared_ptr.hh> + @endcode + + Usage: @code int i = 10; shared_ptr<int> pi = stackobject_to_shared_ptr(i); @endcode + The @c shared_ptr points to the object on the stack, but its deleter is + set to an instance of @c null_deleter so that nothing happens when the @c + shared_ptr is destroyed. + + @sa shared_ptr, null_deleter */ template<typename T> inline shared_ptr<T> stackobject_to_shared_ptr(T & t) @@ -68,7 +79,13 @@ namespace Dune } /** - @brief Convert a stack object to a shared_ptr of a base class + @brief Create a shared_ptr to a base class for a stack-allocated object + @relatesalso null_deleter + @code + #include <dune/common/shared_ptr.hh> + @endcode + + Usage: @code class A {}; class B : public A {}; @@ -78,6 +95,11 @@ namespace Dune B b; shared_ptr<A> pa = stackobject_to_shared_ptr<A>(b); @endcode + The @c shared_ptr points to the object on the stack, but its deleter is + set to an instance of @c null_deleter so that nothing happens when the @c + shared_ptr is destroyed. + + @sa shared_ptr, null_deleter */ template<typename T, typename T2> inline shared_ptr<T2> stackobject_to_shared_ptr(T & t)