From 77c629b6e4219939942d028fa473ea0f32bda24e Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Wed, 28 May 2003 13:51:35 +0000 Subject: [PATCH] smart_ptr.hpp now includes all smart pointer headers for convenience. [SVN r18588] --- include/boost/smart_ptr.hpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/include/boost/smart_ptr.hpp b/include/boost/smart_ptr.hpp index 4ff62e7..a142883 100644 --- a/include/boost/smart_ptr.hpp +++ b/include/boost/smart_ptr.hpp @@ -1,10 +1,11 @@ // // smart_ptr.hpp // -// For compatibility, this header includes the headers for the four "classic" -// smart pointer class templates. +// For convenience, this header includes the rest of the smart +// pointer library headers. // // Copyright (c) 1998-2002 boost.org +// Copyright (c) 2003 Peter Dimov // // Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears in all copies. @@ -14,7 +15,15 @@ // http://www.boost.org/libs/smart_ptr/smart_ptr.htm // -#include +#include + +#include #include #include #include + +#if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES) +# include +# include +# include +#endif