File indexing completed on 2025-01-18 09:30:33
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_COROUTINES2_DETAIL_COROUTINE_HPP
0008 #define BOOST_COROUTINES2_DETAIL_COROUTINE_HPP
0009
0010 #include <boost/config.hpp>
0011 #include <boost/context/detail/config.hpp>
0012
0013 #ifdef BOOST_HAS_ABI_HEADERS
0014 # include BOOST_ABI_PREFIX
0015 #endif
0016
0017 namespace boost {
0018 namespace coroutines2 {
0019 namespace detail {
0020
0021 template< typename T >
0022 class pull_coroutine;
0023
0024 template< typename T >
0025 class push_coroutine;
0026
0027 }}}
0028
0029 #include <boost/coroutine2/detail/pull_coroutine.hpp>
0030 #include <boost/coroutine2/detail/push_coroutine.hpp>
0031
0032 #include <boost/coroutine2/detail/pull_control_block_cc.hpp>
0033 #include <boost/coroutine2/detail/push_control_block_cc.hpp>
0034
0035 #include <boost/coroutine2/detail/pull_coroutine.ipp>
0036 #include <boost/coroutine2/detail/push_coroutine.ipp>
0037
0038 #include <boost/coroutine2/detail/pull_control_block_cc.ipp>
0039 #include <boost/coroutine2/detail/push_control_block_cc.ipp>
0040
0041 #ifdef BOOST_HAS_ABI_HEADERS
0042 # include BOOST_ABI_SUFFIX
0043 #endif
0044
0045 #endif