/*============================================================================= Copyright (c) 2001-2007 Joel de Guzman Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #ifndef PHOENIX_STATEMENT_WHILE_HPP #define PHOENIX_STATEMENT_WHILE_HPP #include #include namespace boost { namespace phoenix { struct while_eval { template struct result { typedef void type; }; template static void eval(Env const& env, Cond& cond, Do& do_) { while (cond.eval(env)) do_.eval(env); } }; template struct while_gen { while_gen(Cond const& cond) : cond(cond) {} template actor::type> operator[](Do const& do_) const { return compose(cond, do_); } Cond cond; }; template inline while_gen while_(Cond const& cond) { return while_gen(cond); } }} #endif