From 579a651e3db66d3a450338103117788bb92df62d Mon Sep 17 00:00:00 2001 From: "Xawotihs@gmail.com" Date: Sun, 6 Jan 2013 17:49:55 +0000 Subject: [PATCH] Adding boost weak pointer support --- Boost/boost/weak_ptr.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Boost/boost/weak_ptr.hpp diff --git a/Boost/boost/weak_ptr.hpp b/Boost/boost/weak_ptr.hpp new file mode 100644 index 000000000..9c7dcc887 --- /dev/null +++ b/Boost/boost/weak_ptr.hpp @@ -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 + +#endif // #ifndef BOOST_WEAK_PTR_HPP_INCLUDED