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 is the documentation for an old version of boost. Click here for the latest Boost documentation.
PrevUpHomeNext

Function template skeleton

boost::mpi::skeleton — Create a skeleton proxy object.

Synopsis

// In header: <boost/mpi/skeleton_and_content.hpp>


template<typename T> const skeleton_proxy< T > skeleton(T & x);

Description

This routine creates an instance of the skeleton_proxy class. It will typically be used when calling send, recv, or broadcast, to indicate that only the skeleton (structure) of an object should be transmitted and not its contents.

Parameters:

x

the object whose structure will be transmitted.

Returns:

a skeleton_proxy object referencing x


PrevUpHomeNext