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 20 namespace boost { namespace mpi { 21 22 template <class T> struct skeleton_proxy; 23 template <class T> const skeleton_proxy<T> skeleton(T& x); 24 class content; 25 template <class T> const content get_content(const T& x); 26 class packed_skeleton_iarchive; 27 class packed_skeleton_oarchive; 28 29 } } // end namespace boost::mpi 30 31 #endif // BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP 32