annotate DEPENDENCIES/generic/include/boost/python/detail/operator_id.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 // Copyright David Abrahams 2002.
Chris@16 2 // Distributed under the Boost Software License, Version 1.0. (See
Chris@16 3 // accompanying file LICENSE_1_0.txt or copy at
Chris@16 4 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 5 #ifndef OPERATOR_ID_DWA2002531_HPP
Chris@16 6 # define OPERATOR_ID_DWA2002531_HPP
Chris@16 7
Chris@16 8 namespace boost { namespace python { namespace detail {
Chris@16 9
Chris@16 10 enum operator_id
Chris@16 11 {
Chris@16 12 op_add,
Chris@16 13 op_sub,
Chris@16 14 op_mul,
Chris@16 15 op_div,
Chris@16 16 op_mod,
Chris@16 17 op_divmod,
Chris@16 18 op_pow,
Chris@16 19 op_lshift,
Chris@16 20 op_rshift,
Chris@16 21 op_and,
Chris@16 22 op_xor,
Chris@16 23 op_or,
Chris@16 24 op_neg,
Chris@16 25 op_pos,
Chris@16 26 op_abs,
Chris@16 27 op_invert,
Chris@16 28 op_int,
Chris@16 29 op_long,
Chris@16 30 op_float,
Chris@16 31 op_str,
Chris@16 32 op_cmp,
Chris@16 33 op_gt,
Chris@16 34 op_ge,
Chris@16 35 op_lt,
Chris@16 36 op_le,
Chris@16 37 op_eq,
Chris@16 38 op_ne,
Chris@16 39 op_iadd,
Chris@16 40 op_isub,
Chris@16 41 op_imul,
Chris@16 42 op_idiv,
Chris@16 43 op_imod,
Chris@16 44 op_ilshift,
Chris@16 45 op_irshift,
Chris@16 46 op_iand,
Chris@16 47 op_ixor,
Chris@16 48 op_ior,
Chris@16 49 op_complex,
Chris@16 50 #if PY_VERSION_HEX >= 0x03000000
Chris@16 51 op_bool,
Chris@16 52 #else
Chris@16 53 op_nonzero,
Chris@16 54 #endif
Chris@16 55 op_repr
Chris@16 56 #if PY_VERSION_HEX >= 0x03000000
Chris@16 57 ,op_truediv
Chris@16 58 #endif
Chris@16 59 };
Chris@16 60
Chris@16 61 }}} // namespace boost::python::detail
Chris@16 62
Chris@16 63 #endif // OPERATOR_ID_DWA2002531_HPP