Chris@16: /*============================================================================== Chris@16: Copyright (c) 2001-2010 Joel de Guzman Chris@16: Copyright (c) 2010 Eric Niebler Chris@16: Copyright (c) 2010 Thomas Heller Chris@16: Chris@16: Distributed under the Boost Software License, Version 1.0. (See accompanying Chris@16: file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: ==============================================================================*/ Chris@16: Chris@16: #ifndef BOOST_PHOENIX_STATEMENT_SEQUENCE_HPP Chris@16: #define BOOST_PHOENIX_STATEMENT_SEQUENCE_HPP Chris@16: Chris@16: #include Chris@16: #include Chris@16: #include Chris@101: #include // Included to solve #5715 Chris@16: Chris@16: namespace boost { namespace phoenix Chris@16: { Chris@16: namespace expression Chris@16: { Chris@16: template Chris@16: struct sequence Chris@16: : expr Chris@16: {}; Chris@16: } Chris@16: Chris@16: namespace rule Chris@16: { Chris@16: struct sequence Chris@16: : expression::sequence< Chris@16: meta_grammar Chris@16: , meta_grammar Chris@16: > Chris@16: {}; Chris@16: } Chris@16: Chris@16: template Chris@16: struct meta_grammar::case_ Chris@16: : enable_rule Chris@16: {}; Chris@16: Chris@16: }} Chris@16: Chris@16: #endif