/usr/include/boost/phoenix/statement
Edit: /usr/include/boost/phoenix/statement/sequence.hpp (1254B)
/*==============================================================================
Copyright (c) 2001-2010 Joel de Guzman
Copyright (c) 2010 Eric Niebler
Copyright (c) 2010 Thomas Heller
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 BOOST_PHOENIX_STATEMENT_SEQUENCE_HPP
#define BOOST_PHOENIX_STATEMENT_SEQUENCE_HPP
#include
#include
#include
#include // Included to solve #5715
namespace boost { namespace phoenix
{
namespace expression
{
template
struct sequence
: expr
{};
}
namespace rule
{
struct sequence
: expression::sequence<
meta_grammar
, meta_grammar
>
{};
}
template
struct meta_grammar::case_
: enable_rule
{};
}}
#endif