• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2 // basic_oserializer.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 <cstddef> // NULL
12 
13 #define BOOST_ARCHIVE_SOURCE
14 #include <boost/serialization/config.hpp>
15 #include <boost/archive/detail/basic_oserializer.hpp>
16 
17 namespace boost {
18 namespace archive {
19 namespace detail {
20 
21 BOOST_ARCHIVE_DECL
basic_oserializer(const boost::serialization::extended_type_info & eti)22 basic_oserializer::basic_oserializer(
23         const boost::serialization::extended_type_info & eti
24 ) :
25     basic_serializer(eti),
26     m_bpos(NULL)
27 {}
28 
29 BOOST_ARCHIVE_DECL
~basic_oserializer()30 basic_oserializer::~basic_oserializer(){}
31 
32 } // namespace detail
33 } // namespace archive
34 } // namespace boost
35