/usr/include/boost/mpi
NameSizeModeActions
collectives/-0755rm
detail/-0755rm
python/-0755rm
allocator.hpp57700644editdlrm
cartesian_communicator.hpp127250644editdlrm
collectives.hpp247270644editdlrm
collectives_fwd.hpp7520644editdlrm
communicator.hpp577420644editdlrm
config.hpp60800644editdlrm
datatype.hpp135510644editdlrm
datatype_fwd.hpp13480644editdlrm
environment.hpp101810644editdlrm
error_string.hpp6580644editdlrm
exception.hpp32350644editdlrm
graph_communicator.hpp181000644editdlrm
group.hpp109870644editdlrm
inplace.hpp15590644editdlrm
intercommunicator.hpp57550644editdlrm
nonblocking.hpp253390644editdlrm
operations.hpp99340644editdlrm
packed_iarchive.hpp50100644editdlrm
packed_oarchive.hpp48130644editdlrm
python.hpp28030644editdlrm
request.hpp53870644editdlrm
skeleton_and_content.hpp25500644editdlrm
skeleton_and_content_fwd.hpp10520644editdlrm
skeleton_and_content_types.hpp118180644editdlrm
status.hpp34500644editdlrm
timer.hpp20080644editdlrm
Edit: /usr/include/boost/mpi/skeleton_and_content_fwd.hpp (1052B)
// (C) Copyright 2006 Douglas Gregor // Use, modification and distribution is subject to the Boost Software // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // Authors: Douglas Gregor /** @file skeleton_and_content_fwd.hpp * * This header contains all of the forward declarations required to * use transmit skeletons of data structures and the content of data * structures separately. To actually transmit skeletons or content, * include the header @c boost/mpi/skeleton_and_content.hpp. */ #ifndef BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP #define BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP namespace boost { namespace mpi { template struct skeleton_proxy; template const skeleton_proxy skeleton(T& x); class content; template const content get_content(const T& x); class packed_skeleton_iarchive; class packed_skeleton_oarchive; } } // end namespace boost::mpi #endif // BOOST_MPI_SKELETON_AND_CONTENT_FWD_HPP