Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:30

0001 #ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP
0002 #define BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP
0003 
0004 // MS compatible compilers support #pragma once
0005 #if defined(_MSC_VER)
0006 # pragma once
0007 #endif
0008 
0009 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
0010 // polymorphic_xml_iarchive.hpp
0011 
0012 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
0013 // Use, modification and distribution is subject to the Boost Software
0014 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0015 // http://www.boost.org/LICENSE_1_0.txt)
0016 
0017 //  See http://www.boost.org for updates, documentation, and revision history.
0018 
0019 #include <boost/config.hpp>
0020 #include <boost/archive/xml_iarchive.hpp>
0021 #include <boost/archive/detail/polymorphic_iarchive_route.hpp>
0022 
0023 #ifdef BOOST_MSVC
0024 #  pragma warning(push)
0025 #  pragma warning(disable : 4511 4512)
0026 #endif
0027 
0028 namespace boost {
0029 namespace archive {
0030 
0031 class BOOST_SYMBOL_VISIBLE polymorphic_xml_iarchive :
0032     public detail::polymorphic_iarchive_route<xml_iarchive>
0033 {
0034 public:
0035     polymorphic_xml_iarchive(std::istream & is, unsigned int flags = 0) :
0036         detail::polymorphic_iarchive_route<xml_iarchive>(is, flags)
0037     {}
0038     ~polymorphic_xml_iarchive() BOOST_OVERRIDE {}
0039 };
0040 
0041 } // namespace archive
0042 } // namespace boost
0043 
0044 #ifdef BOOST_MSVC
0045 #pragma warning(pop)
0046 #endif
0047 
0048 // required by export
0049 BOOST_SERIALIZATION_REGISTER_ARCHIVE(
0050     boost::archive::polymorphic_xml_iarchive
0051 )
0052 
0053 #endif // BOOST_ARCHIVE_POLYMORPHIC_XML_IARCHIVE_HPP