1 
2 //          Copyright Oliver Kowalke 2009.
3 // Distributed under the Boost Software License, Version 1.0.
4 //    (See accompanying file LICENSE_1_0.txt or copy at
5 //          http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef BOOST_COROUTINES_ALL_H
8 #define BOOST_COROUTINES_ALL_H
9 
10 #include <boost/coroutine/attributes.hpp>
11 #include <boost/coroutine/coroutine.hpp>
12 #include <boost/coroutine/exceptions.hpp>
13 #include <boost/coroutine/flags.hpp>
14 #include <boost/coroutine/protected_stack_allocator.hpp>
15 #include <boost/coroutine/segmented_stack_allocator.hpp>
16 #include <boost/coroutine/stack_allocator.hpp>
17 #include <boost/coroutine/stack_context.hpp>
18 #include <boost/coroutine/stack_traits.hpp>
19 #include <boost/coroutine/standard_stack_allocator.hpp>
20 
21 #endif // BOOST_COROUTINES_ALL_H
22