annotate DEPENDENCIES/generic/include/boost/archive/polymorphic_xml_woarchive.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 #ifndef BOOST_ARCHIVE_POLYMORPHIC_XML_WOARCHIVE_HPP
Chris@16 2 #define BOOST_ARCHIVE_POLYMORPHIC_XML_WOARCHIVE_HPP
Chris@16 3
Chris@16 4 // MS compatible compilers support #pragma once
Chris@101 5 #if defined(_MSC_VER)
Chris@16 6 # pragma once
Chris@16 7 #endif
Chris@16 8
Chris@16 9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
Chris@16 10 // polymorphic_xml_oarchive.hpp
Chris@16 11
Chris@16 12 // (C) Copyright 2002 Robert Ramey - http://www.rrsd.com .
Chris@16 13 // Use, modification and distribution is subject to the Boost Software
Chris@16 14 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 15 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 16
Chris@16 17 // See http://www.boost.org for updates, documentation, and revision history.
Chris@16 18
Chris@16 19 #include <boost/config.hpp>
Chris@16 20 #ifdef BOOST_NO_STD_WSTREAMBUF
Chris@16 21 #error "wide char i/o not supported on this platform"
Chris@16 22 #else
Chris@16 23
Chris@16 24 #include <boost/archive/xml_woarchive.hpp>
Chris@16 25 #include <boost/archive/detail/polymorphic_oarchive_route.hpp>
Chris@16 26
Chris@16 27 namespace boost {
Chris@16 28 namespace archive {
Chris@16 29
Chris@16 30 typedef detail::polymorphic_oarchive_route<
Chris@101 31 xml_woarchive_impl<xml_woarchive>
Chris@16 32 > polymorphic_xml_woarchive;
Chris@16 33
Chris@16 34 } // namespace archive
Chris@16 35 } // namespace boost
Chris@16 36
Chris@16 37 // required by export
Chris@16 38 BOOST_SERIALIZATION_REGISTER_ARCHIVE(
Chris@16 39 boost::archive::polymorphic_xml_woarchive
Chris@16 40 )
Chris@16 41
Chris@16 42 #endif // BOOST_NO_STD_WSTREAMBUF
Chris@16 43 #endif // BOOST_ARCHIVE_POLYMORPHIC_XML_WOARCHIVE_HPP
Chris@16 44