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