os/ossrv/ossrv_pub/boost_apis/boost/smart_ptr.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
//
sl@0
     2
//  smart_ptr.hpp
sl@0
     3
//
sl@0
     4
//  For convenience, this header includes the rest of the smart
sl@0
     5
//  pointer library headers.
sl@0
     6
//
sl@0
     7
//  Copyright (c) 2003 Peter Dimov  Distributed under the Boost
sl@0
     8
//  Software License, Version 1.0. (See accompanying file
sl@0
     9
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
    10
//
sl@0
    11
//  http://www.boost.org/libs/smart_ptr/smart_ptr.htm
sl@0
    12
//
sl@0
    13
sl@0
    14
#include <boost/config.hpp>
sl@0
    15
sl@0
    16
#include <boost/scoped_ptr.hpp>
sl@0
    17
#include <boost/scoped_array.hpp>
sl@0
    18
#include <boost/shared_ptr.hpp>
sl@0
    19
#include <boost/shared_array.hpp>
sl@0
    20
sl@0
    21
#if !defined(BOOST_NO_MEMBER_TEMPLATES) || defined(BOOST_MSVC6_MEMBER_TEMPLATES)
sl@0
    22
# include <boost/weak_ptr.hpp>
sl@0
    23
# include <boost/intrusive_ptr.hpp>
sl@0
    24
# include <boost/enable_shared_from_this.hpp>
sl@0
    25
#endif