// Copyright (C) 2000, 2001 Stephen Cleary (shammah@voyager.net) // // This file can be redistributed and/or modified under the terms found // in "copyright.html" // This software and its documentation is provided "as is" without express or // implied warranty, and with no claim as to its suitability for any purpose. // // See http://www.boost.org for updates, documentation, and revision history. #ifndef BOOST_POOLFWD_HPP #define BOOST_POOLFWD_HPP #include // for workarounds // std::size_t #include // boost::details::pool::default_mutex #include namespace boost { // // Location: // template class simple_segregated_storage; // // Location: // struct default_user_allocator_new_delete; struct default_user_allocator_malloc_free; template class pool; // // Location: // template class object_pool; // // Location: // template struct singleton_pool; // // Location: // struct pool_allocator_tag; template class pool_allocator; struct fast_pool_allocator_tag; template class fast_pool_allocator; } // namespace boost #endif