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 
11 #include <boost/archive/detail/archive_serializer_map.hpp>
12 #include <boost/archive/impl/archive_serializer_map.ipp>
13 #include <boost/mpi/skeleton_and_content.hpp>
14 
15 namespace boost { namespace archive {
16 
17 // explicitly instantiate all required templates
18 
19 // template class basic_binary_iarchive<mpi::packed_skeleton_iarchive> ;
20 template class detail::archive_serializer_map<mpi::packed_skeleton_iarchive> ;
21 template class detail::archive_serializer_map<
22   mpi::detail::forward_skeleton_iarchive<
23     boost::mpi::packed_skeleton_iarchive, boost::mpi::packed_iarchive> > ;
24 
25 } } // end namespace boost::archive
26