]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/serialization/example/polymorphic_portable_binary_iarchive.cpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / serialization / example / polymorphic_portable_binary_iarchive.cpp
CommitLineData
7c673cae
FG
1/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2// polymorphic_portable_binary_iarchive.cpp
3
f67539c2 4// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
7c673cae
FG
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 <istream>
12
13#define BOOST_ARCHIVE_SOURCE
14#include "polymorphic_portable_binary_iarchive.hpp"
15
16// explicitly instantiate for this type of text stream
17#include <boost/archive/impl/basic_binary_iarchive.ipp>
18#include <boost/archive/impl/archive_pointer_iserializer.ipp>
19#include <boost/archive/impl/basic_binary_iprimitive.ipp>
20
21namespace boost {
22namespace archive {
23
24template class binary_iarchive_impl<
f67539c2
TL
25 polymorphic_portable_binary_iarchive,
26 std::istream::char_type,
7c673cae
FG
27 std::istream::traits_type
28>;
29template class detail::archive_pointer_iserializer<
30 polymorphic_portable_binary_iarchive
31> ;
32
33} // namespace archive
34} // namespace boost