Blame boost/smart_ptr.hpp

Packit 58578d
#ifndef BOOST_SMART_PTR_HPP_INCLUDED
Packit 58578d
#define BOOST_SMART_PTR_HPP_INCLUDED
Packit 58578d
Packit 58578d
//
Packit 58578d
//  smart_ptr.hpp
Packit 58578d
//
Packit 58578d
//  For convenience, this header includes the rest of the smart
Packit 58578d
//  pointer library headers.
Packit 58578d
//
Packit 58578d
//  Copyright (c) 2003 Peter Dimov  Distributed under the Boost
Packit 58578d
//  Software License, Version 1.0. (See accompanying file
Packit 58578d
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Packit 58578d
//
Packit 58578d
//  See http://www.boost.org/libs/smart_ptr/ for documentation.
Packit 58578d
//
Packit 58578d
Packit 58578d
#include <boost/scoped_ptr.hpp>
Packit 58578d
#include <boost/scoped_array.hpp>
Packit 58578d
#include <boost/shared_ptr.hpp>
Packit 58578d
#include <boost/shared_array.hpp>
Packit 58578d
#include <boost/weak_ptr.hpp>
Packit 58578d
#include <boost/intrusive_ptr.hpp>
Packit 58578d
#include <boost/enable_shared_from_this.hpp>
Packit 58578d
#include <boost/make_shared.hpp>
Packit 58578d
Packit 58578d
#endif // #ifndef BOOST_SMART_PTR_HPP_INCLUDED