diff --git a/smart_ptr.htm b/smart_ptr.htm index 0f5246d..682a675 100644 --- a/smart_ptr.htm +++ b/smart_ptr.htm @@ -29,27 +29,27 @@ thus responsible for deletion of the object when it is no longer needed.
scoped_ptr | -<boost/scoped_ptr.hpp> | +<boost/scoped_ptr.hpp> | Simple sole ownership of single objects. Noncopyable. |
scoped_array | -<boost/scoped_array.hpp> | +<boost/scoped_array.hpp> | Simple sole ownership of arrays. Noncopyable. |
shared_ptr | -<boost/shared_ptr.hpp> | +<boost/shared_ptr.hpp> | Object ownership shared among multiple pointers |
shared_array | -<boost/shared_array.hpp> | +<boost/shared_array.hpp> | Array ownership shared among multiple pointers. |
weak_ptr | -<boost/weak_ptr.hpp> | +<boost/weak_ptr.hpp> | Non-owning observers of an object owned by shared_ptr. |
Revised 1 February 200204 February 2002
Copyright 1999 Greg Colvin and Beman Dawes. Copyright 2002 Darin Adler.