polymorphic_portable_binary_oarchive.cpp 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  2. // polymorphic_portable_binary_oarchive.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 <ostream>
  9. #define BOOST_ARCHIVE_SOURCE
  10. #include "polymorphic_portable_binary_oarchive.hpp"
  11. // explicitly instantiate for this type of text stream
  12. #include <boost/archive/impl/basic_binary_oarchive.ipp>
  13. #include <boost/archive/impl/archive_pointer_oserializer.ipp>
  14. #include <boost/archive/impl/basic_binary_oprimitive.ipp>
  15. namespace boost {
  16. namespace archive {
  17. // explicitly instantiate for this type of binary stream
  18. template class binary_oarchive_impl<
  19. polymorphic_portable_binary_oarchive,
  20. std::ostream::char_type,
  21. std::ostream::traits_type
  22. >;
  23. template class detail::archive_pointer_oserializer<
  24. polymorphic_portable_binary_oarchive
  25. > ;
  26. } // namespace archive
  27. } // namespace boost