os/ossrv/ossrv_pub/boost_apis/boost/pool/poolfwd.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/pool/poolfwd.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,73 @@
     1.4 +// Copyright (C) 2000, 2001 Stephen Cleary
     1.5 +//
     1.6 +// Distributed under the Boost Software License, Version 1.0. (See
     1.7 +// accompanying file LICENSE_1_0.txt or copy at
     1.8 +// http://www.boost.org/LICENSE_1_0.txt)
     1.9 +//
    1.10 +// See http://www.boost.org for updates, documentation, and revision history.
    1.11 +
    1.12 +#ifndef BOOST_POOLFWD_HPP
    1.13 +#define BOOST_POOLFWD_HPP
    1.14 +
    1.15 +#include <boost/config.hpp> // for workarounds
    1.16 +
    1.17 +// std::size_t
    1.18 +#include <cstddef>
    1.19 +
    1.20 +// boost::details::pool::default_mutex
    1.21 +#include <boost/pool/detail/mutex.hpp>
    1.22 +
    1.23 +namespace boost {
    1.24 +
    1.25 +//
    1.26 +// Location: <boost/pool/simple_segregated_storage.hpp>
    1.27 +//
    1.28 +template <typename SizeType = std::size_t>
    1.29 +class simple_segregated_storage;
    1.30 +
    1.31 +//
    1.32 +// Location: <boost/pool/pool.hpp>
    1.33 +//
    1.34 +struct default_user_allocator_new_delete;
    1.35 +struct default_user_allocator_malloc_free;
    1.36 +
    1.37 +template <typename UserAllocator = default_user_allocator_new_delete>
    1.38 +class pool;
    1.39 +
    1.40 +//
    1.41 +// Location: <boost/pool/object_pool.hpp>
    1.42 +//
    1.43 +template <typename T, typename UserAllocator = default_user_allocator_new_delete>
    1.44 +class object_pool;
    1.45 +
    1.46 +//
    1.47 +// Location: <boost/pool/singleton_pool.hpp>
    1.48 +//
    1.49 +template <typename Tag, unsigned RequestedSize,
    1.50 +    typename UserAllocator = default_user_allocator_new_delete,
    1.51 +    typename Mutex = details::pool::default_mutex,
    1.52 +    unsigned NextSize = 32>
    1.53 +struct singleton_pool;
    1.54 +
    1.55 +//
    1.56 +// Location: <boost/pool/pool_alloc.hpp>
    1.57 +//
    1.58 +struct pool_allocator_tag;
    1.59 +
    1.60 +template <typename T,
    1.61 +    typename UserAllocator = default_user_allocator_new_delete,
    1.62 +    typename Mutex = details::pool::default_mutex,
    1.63 +    unsigned NextSize = 32>
    1.64 +class pool_allocator;
    1.65 +
    1.66 +struct fast_pool_allocator_tag;
    1.67 +
    1.68 +template <typename T,
    1.69 +    typename UserAllocator = default_user_allocator_new_delete,
    1.70 +    typename Mutex = details::pool::default_mutex,
    1.71 +    unsigned NextSize = 32>
    1.72 +class fast_pool_allocator;
    1.73 +
    1.74 +} // namespace boost
    1.75 +
    1.76 +#endif