Chris@16: /*============================================================================== Chris@16: Copyright (c) 2005-2010 Joel de Guzman 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: #ifndef BOOST_PHOENIX_OPERATOR_COMPARISON_HPP Chris@16: #define BOOST_PHOENIX_OPERATOR_COMPARISON_HPP Chris@16: Chris@16: #include Chris@16: #include Chris@16: #include Chris@101: #include // Added to solve bug 6268 Chris@16: Chris@16: namespace boost { namespace phoenix Chris@16: { Chris@16: BOOST_PHOENIX_BINARY_OPERATORS( Chris@16: (equal_to) Chris@16: (not_equal_to) Chris@16: (less_equal) Chris@16: (greater_equal) Chris@16: (less) Chris@16: (greater) Chris@16: ) Chris@16: using proto::exprns_::operator==; Chris@16: using proto::exprns_::operator!=; Chris@16: using proto::exprns_::operator<=; Chris@16: using proto::exprns_::operator>=; Chris@16: using proto::exprns_::operator<; Chris@16: using proto::exprns_::operator>; Chris@16: }} Chris@16: Chris@16: #include Chris@16: Chris@16: #endif