bundle boost/weak_ptr.hpp

This commit is contained in:
Ivailo Monev 2014-12-01 20:12:11 +00:00
parent 0d87463fc5
commit d2c3b09e72
2 changed files with 20 additions and 2 deletions

View file

@ -19,5 +19,5 @@ mkdir -vp miniboost/
bcp --boost="$boost" boost/shared_array.hpp boost/concept_check.hpp \
boost/scoped_ptr.hpp boost/circular_buffer.hpp boost/scoped_array.hpp \
boost/shared_ptr.hpp boost/enable_shared_from_this.hpp boost/bind \
miniboost/
boost/shared_ptr.hpp boost/enable_shared_from_this.hpp boost/weak_ptr.hpp \
boost/bind miniboost/

View file

@ -0,0 +1,18 @@
#ifndef BOOST_WEAK_PTR_HPP_INCLUDED
#define BOOST_WEAK_PTR_HPP_INCLUDED
//
// weak_ptr.hpp
//
// Copyright (c) 2001, 2002, 2003 Peter Dimov
//
// Distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
//
// See http://www.boost.org/libs/smart_ptr/weak_ptr.htm for documentation.
//
#include <boost/smart_ptr/weak_ptr.hpp>
#endif // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED