basic_oserializer.cpp 949 B

12345678910111213141516171819202122232425262728293031323334
  1. /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
  2. // basic_oserializer.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 <cstddef> // NULL
  9. #define BOOST_ARCHIVE_SOURCE
  10. #include <boost/serialization/config.hpp>
  11. #include <boost/archive/detail/basic_oserializer.hpp>
  12. namespace boost {
  13. namespace archive {
  14. namespace detail {
  15. BOOST_ARCHIVE_DECL
  16. basic_oserializer::basic_oserializer(
  17. const boost::serialization::extended_type_info & eti
  18. ) :
  19. basic_serializer(eti),
  20. m_bpos(NULL)
  21. {}
  22. BOOST_ARCHIVE_DECL
  23. basic_oserializer::~basic_oserializer(){}
  24. } // namespace detail
  25. } // namespace archive
  26. } // namespace boost