fix doc example typo
[boost.git] / boost / archive / polymorphic_xml_oarchive.hpp
blob85766942880f2025ab7bc15f94959198de90612f
1 #ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP
2 #define BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
6 # pragma once
7 #endif
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // polymorphic_xml_oarchive.hpp
12 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
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)
17 // See http://www.boost.org for updates, documentation, and revision history.
19 #include <boost/config.hpp>
20 #include <boost/archive/xml_oarchive.hpp>
21 #include <boost/archive/detail/polymorphic_oarchive_route.hpp>
23 namespace boost {
24 namespace archive {
26 typedef detail::polymorphic_oarchive_route<
27 xml_oarchive_impl<naked_xml_oarchive>
28 > polymorphic_xml_oarchive;
30 } // namespace archive
31 } // namespace boost
33 // required by export
34 BOOST_SERIALIZATION_REGISTER_ARCHIVE(
35 boost::archive::polymorphic_xml_oarchive
38 #endif // BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP