polymorphic_portable_binary_oarchive.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef BOOST_ARCHIVE_POLYMORPHIC_PORTABLE_BINARY_OARCHIVE_HPP
  2. #define BOOST_ARCHIVE_POLYMORPHIC_PORTABLE_BINARY_OARCHIVE_HPP
  3. // MS compatible compilers support #pragma once
  4. #if defined(_MSC_VER)
  5. # pragma once
  6. #endif
  7. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  8. // polymorphic_portable_binary_oarchive.hpp
  9. // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
  10. // Use, modification and distribution is subject to the Boost Software
  11. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  12. // http://www.boost.org/LICENSE_1_0.txt)
  13. // See http://www.boost.org for updates, documentation, and revision history.
  14. #include <boost/archive/detail/polymorphic_oarchive_dispatch.hpp>
  15. #include "portable_binary_oarchive.hpp"
  16. typedef boost::archive::detail::polymorphic_oarchive_dispatch<
  17. portable_binary_oarchive
  18. > polymorphic_portable_binary_oarchive;
  19. #include <boost/version.hpp>
  20. #if BOOST_VERSION > 103401
  21. // required by export
  22. BOOST_SERIALIZATION_REGISTER_ARCHIVE(
  23. polymorphic_portable_binary_oarchive
  24. )
  25. #endif
  26. #endif // BOOST_ARCHIVE_POLYMORPHIC_PORTABLE_BINARY_OARCHIVE_HPP