// Copyright (C) 2008-2016 Tim Blechmann // // 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) #ifndef BOOST_LOCKFREE_FORWARD_HPP_INCLUDED #define BOOST_LOCKFREE_FORWARD_HPP_INCLUDED #ifndef BOOST_DOXYGEN_INVOKED #include // size_t #include #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES #include #endif namespace boost { namespace lockfree { // policies template struct fixed_sized; template struct capacity; template struct allocator; // data structures #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES template #else template #endif class queue; #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES template #else template #endif class stack; #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES template #else template #endif class spsc_queue; } } #endif // BOOST_DOXYGEN_INVOKED #endif // BOOST_LOCKFREE_FORWARD_HPP_INCLUDED