Sophie

Sophie

distrib > Mageia > 6 > i586 > by-pkgid > 8bc6759a6f32712e5bc0cdfb80b23784 > files > 588

boost-examples-1.60.0-6.mga6.noarch.rpm

#include <boost/bind.hpp>
#include <boost/coroutine/all.hpp>

#include "X.h"

typedef boost::coroutines::asymmetric_coroutine< X& >::pull_type pull_coro_t;
typedef boost::coroutines::asymmetric_coroutine< X& >::push_type push_coro_t;

void foo1( push_coro_t & sink)
{
    for ( int i = 0; i < 10; ++i)
    {
        X x( i);
        sink( x);
    }
}

void foo2( pull_coro_t & source)
{
    while ( source) {
        X & x = source.get();
        source();
    }
}

void bar()
{
    {
        pull_coro_t source( foo1);
        while ( source) {
            X & x = source.get();
            source();
        }
    }
    {
        push_coro_t sink( foo2);
        for ( int i = 0; i < 10; ++i)
        {
            X x( i);
            sink( x);
        }
    }
}