| 1 | /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 |
| 2 | // polymorphic_portable_binary_iarchive.cpp |
| 3 | |
| 4 | // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . |
| 5 | // Use, modification and distribution is subject to the Boost Software |
| 6 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| 7 | // http://www.boost.org/LICENSE_1_0.txt) |
| 8 | |
| 9 | // See http://www.boost.org for updates, documentation, and revision history. |
| 10 | |
| 11 | #include <istream> |
| 12 | |
| 13 | #define BOOST_ARCHIVE_SOURCE |
| 14 | #include "polymorphic_portable_binary_iarchive.hpp" |
| 15 | |
| 16 | // explicitly instantiate for this type of text stream |
| 17 | #include <boost/archive/impl/basic_binary_iarchive.ipp> |
| 18 | #include <boost/archive/impl/archive_pointer_iserializer.ipp> |
| 19 | #include <boost/archive/impl/basic_binary_iprimitive.ipp> |
| 20 | |
| 21 | namespace boost { |
| 22 | namespace archive { |
| 23 | |
| 24 | template class binary_iarchive_impl< |
| 25 | polymorphic_portable_binary_iarchive, |
| 26 | std::istream::char_type, |
| 27 | std::istream::traits_type |
| 28 | >; |
| 29 | template class detail::archive_pointer_iserializer< |
| 30 | polymorphic_portable_binary_iarchive |
| 31 | > ; |
| 32 | |
| 33 | } // namespace archive |
| 34 | } // namespace boost |
| 35 | |