1 // (C) Copyright 2006 Douglas Gregor <doug.gregor -at gmail.com>
3 // Use, modification and distribution is subject to the Boost Software
4 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
7 // Authors: Douglas Gregor
9 /** @file skeleton_and_content_fwd.hpp
11 * This header contains all of the forward declarations required to
12 * use transmit skeletons of data structures and the content of data
13 * structures separately. To actually transmit skeletons or content,
14 * include the header @c boost/mpi/skeleton_and_content.hpp.
17 #ifndef BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
18 #define BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
20 namespace boost
{ namespace mpi
{
22 template <class T
> struct skeleton_proxy
;
23 template <class T
> const skeleton_proxy
<T
> skeleton(T
& x
);
25 template <class T
> const content
get_content(const T
& x
);
26 class packed_skeleton_iarchive
;
27 class packed_skeleton_oarchive
;
29 } } // end namespace boost::mpi
31 #endif // BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP