annotate DEPENDENCIES/generic/include/boost/mpi/skeleton_and_content_fwd.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 // (C) Copyright 2006 Douglas Gregor <doug.gregor -at gmail.com>
Chris@16 2
Chris@16 3 // Use, modification and distribution is subject to the Boost Software
Chris@16 4 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 5 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6
Chris@16 7 // Authors: Douglas Gregor
Chris@16 8
Chris@16 9 /** @file skeleton_and_content_fwd.hpp
Chris@16 10 *
Chris@16 11 * This header contains all of the forward declarations required to
Chris@16 12 * use transmit skeletons of data structures and the content of data
Chris@16 13 * structures separately. To actually transmit skeletons or content,
Chris@16 14 * include the header @c boost/mpi/skeleton_and_content.hpp.
Chris@16 15 */
Chris@16 16
Chris@16 17 #ifndef BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
Chris@16 18 #define BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP
Chris@16 19
Chris@16 20 namespace boost { namespace mpi {
Chris@16 21
Chris@16 22 template <class T> struct skeleton_proxy;
Chris@16 23 template <class T> const skeleton_proxy<T> skeleton(T& x);
Chris@16 24 class content;
Chris@16 25 template <class T> const content get_content(const T& x);
Chris@16 26 class packed_skeleton_iarchive;
Chris@16 27 class packed_skeleton_oarchive;
Chris@16 28
Chris@16 29 } } // end namespace boost::mpi
Chris@16 30
Chris@16 31 #endif // BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP