Boost
C++ Libraries
...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
This version of Boost is under active development. You are currently in the develop branch. The current version is 1.91.0.
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: |
|