polymorphic_portable_binary_iarchive.cpp 1.1 KB

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