• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP
2 #define BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_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_xml_oarchive.hpp
11 
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)
16 
17 //  See http://www.boost.org for updates, documentation, and revision history.
18 
19 #include <boost/config.hpp>
20 #include <boost/archive/xml_oarchive.hpp>
21 #include <boost/archive/detail/polymorphic_oarchive_route.hpp>
22 
23 namespace boost {
24 namespace archive {
25 
26 class BOOST_SYMBOL_VISIBLE polymorphic_xml_oarchive :
27     public detail::polymorphic_oarchive_route<xml_oarchive>
28 {
29 public:
polymorphic_xml_oarchive(std::ostream & os,unsigned int flags=0)30     polymorphic_xml_oarchive(std::ostream & os, unsigned int flags = 0) :
31         detail::polymorphic_oarchive_route<xml_oarchive>(os, flags)
32     {}
~polymorphic_xml_oarchive()33     ~polymorphic_xml_oarchive() BOOST_OVERRIDE {}
34 };
35 } // namespace archive
36 } // namespace boost
37 
38 // required by export
39 BOOST_SERIALIZATION_REGISTER_ARCHIVE(
40     boost::archive::polymorphic_xml_oarchive
41 )
42 
43 #endif // BOOST_ARCHIVE_POLYMORPHIC_XML_OARCHIVE_HPP
44