comparison python_to_octave.h @ 392:09a1acb81d8b

Delete legacy code no longer used in project * configure.ac: Drop checks for headers and functions no longer needed. * exceptions.cc, exceptions.h: Delete pytave::init_exceptions and related methods and properties for registering exceptions with Boost.Python runtime. * octave_to_python.cc, octave_to_python.h (pytave::octlist_to_pytuple): Delete. * python_to_octave.cc, python_to_octave.h (pytave::pytuple_to_octlist): Delete.
author Mike Miller <mtmiller@octave.org>
date Mon, 03 Apr 2017 13:31:00 -0700
parents a7d597726985
children
comparison
equal deleted inserted replaced
391:70071a5512de 392:09a1acb81d8b
55 \param py_object a constant reference to a boost::python::object that contains the object to be converted. 55 \param py_object a constant reference to a boost::python::object that contains the object to be converted.
56 \see octvalue_to_pyobj 56 \see octvalue_to_pyobj
57 */ 57 */
58 void pyobj_to_octvalue (octave_value& oct_value, 58 void pyobj_to_octvalue (octave_value& oct_value,
59 const boost::python::object& py_object); 59 const boost::python::object& py_object);
60
61 //! Python tuples are converted to Octave value list objects.
62 /*!
63 \param oct_list a reference to octave_value_list to store the result of the conversion.
64 \param py_tuple a constant reference to a boost::python::tuple that contains the tuple to be converted.
65 \see octlist_to_pytuple
66 */
67 void pytuple_to_octlist (octave_value_list& oct_list,
68 const boost::python::tuple& py_tuple);
69 } 60 }
70 61
71 #endif 62 #endif