1 // Copyright (C) 2005-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 // Message Passing Interface 1.1 -- Section 4. MPI Collectives 8 9 /** @file collectives_fwd.hpp 10 * 11 * This header provides forward declarations for all of the 12 * collective operations contained in the header @c collectives.hpp. 13 */ 14 #ifndef BOOST_MPI_COLLECTIVES_FWD_HPP 15 #define BOOST_MPI_COLLECTIVES_FWD_HPP 16 17 /// INTERNAL ONLY 18 #define BOOST_MPI_COLLECTIVES_FORWARD_ONLY 19 #include <boost/mpi/collectives.hpp> 20 #undef BOOST_MPI_COLLECTIVES_FORWARD_ONLY 21 22 #endif // BOOST_MPI_COLLECTIVES_FWD_HPP 23 24