| 219 | |
| 220 | template <class T> |
| 221 | inline PyObject* reference_arg_to_python<T>::get_object(T& x) |
| 222 | { |
| 223 | to_python_indirect<T&,python::detail::make_reference_holder> convert; |
| 224 | return convert(x); |
| 225 | } |
| 226 | |
| 227 | template <class T> |
| 228 | inline reference_arg_to_python<T>::reference_arg_to_python(T& x) |
no test coverage detected