| 1 | #ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_WIARCHIVE_HPP |
|---|---|
| 2 | #define BOOST_ARCHIVE_POLYMORPHIC_XML_WIARCHIVE_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_wiarchive.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 | #ifdef BOOST_NO_STD_WSTREAMBUF |
| 21 | #error "wide char i/o not supported on this platform" |
| 22 | #else |
| 23 | |
| 24 | #include <boost/archive/xml_wiarchive.hpp> |
| 25 | #include <boost/archive/detail/polymorphic_iarchive_route.hpp> |
| 26 | |
| 27 | namespace boost { |
| 28 | namespace archive { |
| 29 | |
| 30 | class BOOST_SYMBOL_VISIBLE polymorphic_xml_wiarchive : |
| 31 | public detail::polymorphic_iarchive_route<xml_wiarchive> |
| 32 | { |
| 33 | public: |
| 34 | polymorphic_xml_wiarchive(std::wistream & is, unsigned int flags = 0) : |
| 35 | detail::polymorphic_iarchive_route<xml_wiarchive>(is, flags) |
| 36 | {} |
| 37 | ~polymorphic_xml_wiarchive() BOOST_OVERRIDE {} |
| 38 | }; |
| 39 | |
| 40 | } // namespace archive |
| 41 | } // namespace boost |
| 42 | |
| 43 | // required by export |
| 44 | BOOST_SERIALIZATION_REGISTER_ARCHIVE( |
| 45 | boost::archive::polymorphic_xml_wiarchive |
| 46 | ) |
| 47 | |
| 48 | #endif // BOOST_NO_STD_WSTREAMBUF |
| 49 | #endif // BOOST_ARCHIVE_POLYMORPHIC_XML_WIARCHIVE_HPP |
| 50 |
