the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at main 35 lines 1.1 kB view raw
1// Copyright (C) 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 8 9// See www.boost.org/libs/mpi for documentation. 10 11/** @file mpi.hpp 12 * 13 * This file is a top-level convenience header that includes all of 14 * the Boost.MPI library headers. Users concerned about compile time 15 * may wish to include only specific headers from the Boost.MPI 16 * library. 17 * 18 */ 19#ifndef BOOST_MPI_HPP 20#define BOOST_MPI_HPP 21 22#include <boost/mpi/allocator.hpp> 23#include <boost/mpi/collectives.hpp> 24#include <boost/mpi/communicator.hpp> 25#include <boost/mpi/datatype.hpp> 26#include <boost/mpi/environment.hpp> 27#include <boost/mpi/graph_communicator.hpp> 28#include <boost/mpi/group.hpp> 29#include <boost/mpi/intercommunicator.hpp> 30#include <boost/mpi/nonblocking.hpp> 31#include <boost/mpi/operations.hpp> 32#include <boost/mpi/skeleton_and_content.hpp> 33#include <boost/mpi/timer.hpp> 34 35#endif // BOOST_MPI_HPP