Home | Libraries | People | FAQ | More |
boost::mpi::python::register_skeleton_and_content — Registers a type for use with the skeleton/content mechanism in Python.
// In header: <boost/mpi/python.hpp> template<typename T> void register_skeleton_and_content(const T & value = T(), PyTypeObject * type = 0);
The skeleton/content mechanism can only be used from Python with C++ types that have previously been registered via a call to this function. Both the sender and the transmitter must register the type. It is permitted to call this function multiple times for the same type T
, but only one call per process per type is required. The type T
must be Serializable.
Parameters: |
|