]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/serialization/src/basic_pointer_iserializer.cpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / serialization / src / basic_pointer_iserializer.cpp
1 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2 // basic_pointer_iserializer.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_iserializer.hpp>
14
15 namespace boost {
16 namespace archive {
17 namespace detail {
18
19 BOOST_ARCHIVE_DECL
20 basic_pointer_iserializer::basic_pointer_iserializer(
21 const boost::serialization::extended_type_info & eti
22 ) :
23 basic_serializer(eti)
24 {}
25
26 BOOST_ARCHIVE_DECL
27 basic_pointer_iserializer::~basic_pointer_iserializer() {}
28
29 } // namespace detail
30 } // namespace archive
31 } // namespace boost