1 // (C) Copyright 2005 Matthias Troyer 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 // Authors: Matthias Troyer 8 9 #define BOOST_ARCHIVE_SOURCE 10 #include <boost/archive/detail/archive_serializer_map.hpp> 11 #include <boost/archive/impl/archive_serializer_map.ipp> 12 #include <boost/mpi/skeleton_and_content.hpp> 13 14 namespace boost { namespace archive { namespace detail { 15 // explicitly instantiate all required template functions 16 17 template class archive_serializer_map<mpi::detail::content_oarchive> ; 18 template class archive_serializer_map<boost::mpi::detail::ignore_skeleton_oarchive<boost::mpi::detail::content_oarchive> >; 19 template class archive_serializer_map<boost::mpi::detail::ignore_skeleton_oarchive<boost::mpi::detail::mpi_datatype_oarchive> >; 20 } } } 21