File indexing completed on 2025-01-18 09:30:31
0001
0002
0003
0004
0005
0006
0007 #ifndef BOOST_COROUTINES_DETAIL_DATA_H
0008 #define BOOST_COROUTINES_DETAIL_DATA_H
0009
0010 #include <boost/config.hpp>
0011
0012 #include <boost/coroutine/detail/coroutine_context.hpp>
0013
0014 #ifdef BOOST_HAS_ABI_HEADERS
0015 # include BOOST_ABI_PREFIX
0016 #endif
0017
0018 namespace boost {
0019 namespace coroutines {
0020 namespace detail {
0021
0022 struct data_t
0023 {
0024 coroutine_context * from;
0025 void * data;
0026 };
0027
0028 }}}
0029
0030 #ifdef BOOST_HAS_ABI_HEADERS
0031 # include BOOST_ABI_SUFFIX
0032 #endif
0033
0034 #endif