]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/mpi/include/boost/mpi/skeleton_and_content_fwd.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / mpi / include / boost / mpi / skeleton_and_content_fwd.hpp
CommitLineData
7c673cae
FG
1// (C) Copyright 2006 Douglas Gregor <doug.gregor -at gmail.com>
2
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)
6
7// Authors: Douglas Gregor
8
9/** @file skeleton_and_content_fwd.hpp
10 *
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.
15 */
16
17#ifndef BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
18#define BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
19
20namespace boost { namespace mpi {
21
22template <class T> struct skeleton_proxy;
23template <class T> const skeleton_proxy<T> skeleton(T& x);
24class content;
25template <class T> const content get_content(const T& x);
26class packed_skeleton_iarchive;
27class packed_skeleton_oarchive;
28
29} } // end namespace boost::mpi
30
31#endif // BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP