blob: 4fcd9761b3b189e0d69690ab5ba71f284bc05628 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
/*==============================================================================
Copyright (c) 2001-2010 Joel de Guzman
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_OPERATOR_IF_ELSE_HPP
#define BOOST_PHOENIX_OPERATOR_IF_ELSE_HPP
#include <boost/phoenix/core/limits.hpp>
#include <boost/phoenix/core/meta_grammar.hpp>
#include <boost/phoenix/core/expression.hpp>
#include <boost/proto/operators.hpp>
namespace boost { namespace phoenix
{
namespace tag
{
typedef proto::tag::if_else_ if_else_operator;
}
namespace expression
{
template <typename A0, typename A1, typename A2>
struct if_else_operator
: expr<tag::if_else_operator, A0, A1, A2>
{};
}
namespace rule
{
struct if_else_operator
: expression::if_else_operator<
meta_grammar
, meta_grammar
, meta_grammar
>
{};
}
template <typename Dummy>
struct meta_grammar::case_<tag::if_else_operator, Dummy>
: enable_rule<rule::if_else_operator, Dummy>
{};
using proto::if_else;
}}
#endif
|