| 50 | // these enums to Python. |
| 51 | template <class T> |
| 52 | PyObject* enum_<T>::to_python(void const* x) |
| 53 | { |
| 54 | return base::to_python( |
| 55 | converter::registered<T>::converters.m_class_object |
| 56 | , static_cast<long>(*(T const*)x)); |
| 57 | } |
| 58 | |
| 59 | // |
| 60 | // The following two static functions serve as the elements of an |
no outgoing calls
no test coverage detected