mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
bundle boost/weak_ptr.hpp
This commit is contained in:
parent
0d87463fc5
commit
d2c3b09e72
2 changed files with 20 additions and 2 deletions
4
boost.sh
4
boost.sh
|
@ -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/
|
18
miniboost/boost/weak_ptr.hpp
Normal file
18
miniboost/boost/weak_ptr.hpp
Normal 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
|
Loading…
Add table
Reference in a new issue