#ifndef __COROTYPES_HPP__ #define __COROTYPES_HPP__ #include #include using coro_t = boost::coroutines2::coroutine::pull_type; using yield_t = boost::coroutines2::coroutine::push_type; using coro_lambda_t = std::function; #endif