Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:40:59

0001 // (C) Copyright 2006 Douglas Gregor <doug.gregor -at gmail.com>
0002 
0003 // Use, modification and distribution is subject to the Boost Software
0004 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 // http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 //  Authors: Douglas Gregor
0008 
0009 /** @file skeleton_and_content_fwd.hpp
0010  *
0011  *  This header contains all of the forward declarations required to
0012  *  use transmit skeletons of data structures and the content of data
0013  *  structures separately. To actually transmit skeletons or content,
0014  *  include the header @c boost/mpi/skeleton_and_content.hpp.
0015  */
0016 
0017 #ifndef BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
0018 #define BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
0019 
0020 namespace boost { namespace mpi {
0021 
0022 template <class T> struct skeleton_proxy;
0023 template <class T> const skeleton_proxy<T> skeleton(T& x);
0024 class content;
0025 template <class T> const content get_content(const T& x);
0026 class packed_skeleton_iarchive;
0027 class packed_skeleton_oarchive;
0028 
0029 } } // end namespace boost::mpi
0030 
0031 #endif // BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP