annotate DEPENDENCIES/generic/include/boost/smart_ptr.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 #ifndef BOOST_SMART_PTR_HPP_INCLUDED
Chris@16 2 #define BOOST_SMART_PTR_HPP_INCLUDED
Chris@16 3
Chris@16 4 //
Chris@16 5 // smart_ptr.hpp
Chris@16 6 //
Chris@16 7 // For convenience, this header includes the rest of the smart
Chris@16 8 // pointer library headers.
Chris@16 9 //
Chris@16 10 // Copyright (c) 2003 Peter Dimov Distributed under the Boost
Chris@16 11 // Software License, Version 1.0. (See accompanying file
Chris@16 12 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 13 //
Chris@16 14 // http://www.boost.org/libs/smart_ptr/smart_ptr.htm
Chris@16 15 //
Chris@16 16
Chris@16 17 #include <boost/config.hpp>
Chris@16 18
Chris@16 19 #include <boost/scoped_ptr.hpp>
Chris@16 20 #include <boost/scoped_array.hpp>
Chris@16 21 #include <boost/shared_ptr.hpp>
Chris@16 22 #include <boost/shared_array.hpp>
Chris@16 23
Chris@16 24 #if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)
Chris@16 25 # include <boost/weak_ptr.hpp>
Chris@16 26 # include <boost/intrusive_ptr.hpp>
Chris@16 27 # include <boost/enable_shared_from_this.hpp>
Chris@16 28 # include <boost/make_shared.hpp>
Chris@16 29 #endif
Chris@16 30
Chris@16 31 #endif // #ifndef BOOST_SMART_PTR_HPP_INCLUDED