]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/serialization/example/polymorphic_portable_binary_iarchive.hpp
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / libs / serialization / example / polymorphic_portable_binary_iarchive.hpp
CommitLineData
7c673cae
FG
1#ifndef BOOST_ARCHIVE_POLYMORPHIC_PORTABLE_BINARY_IARCHIVE_HPP
2#define BOOST_ARCHIVE_POLYMORPHIC_PORTABLE_BINARY_IARCHIVE_HPP
3
4// MS compatible compilers support #pragma once
5#if defined(_MSC_VER)
6# pragma once
7#endif
8
9/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10// polymorphic_portable_binary_iarchive.hpp
11
f67539c2 12// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
7c673cae
FG
13// Use, modification and distribution is subject to the Boost Software
14// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15// http://www.boost.org/LICENSE_1_0.txt)
16
17// See http://www.boost.org for updates, documentation, and revision history.
18
19#include <boost/archive/detail/polymorphic_iarchive_dispatch.hpp>
20#include "portable_binary_iarchive.hpp"
21
22typedef boost::archive::detail::polymorphic_iarchive_dispatch<
23 portable_binary_iarchive
24> polymorphic_portable_binary_iarchive;
25
26#include <boost/version.hpp>
27#if BOOST_VERSION > 103401
28 // required by export
29 BOOST_SERIALIZATION_REGISTER_ARCHIVE(
30 polymorphic_portable_binary_iarchive
31 )
32#endif
33
34#endif // BOOST_ARCHIVE_POLYMORPHIC_PORTABLE_BINARY_OARCHIVE_HPP
35