Update contrib.
1 #ifndef BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP
2 #define BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // binary_wiarchive.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 #ifdef BOOST_NO_STD_WSTREAMBUF
21 #error "wide char i/o not supported on this platform"
24 #include <istream> // wistream
25 #include <boost/archive/binary_iarchive_impl.hpp>
30 // do not derive from this class. If you want to extend this functionality
31 // via inhertance, derived from binary_iarchive_impl instead. This will
32 // preserve correct static polymorphism.
33 class binary_wiarchive :
34 public binary_iarchive_impl<
35 binary_wiarchive, std::wistream::char_type, std::wistream::traits_type
39 binary_wiarchive(std::wistream & is, unsigned int flags = 0) :
41 binary_wiarchive, std::wistream::char_type, std::wistream::traits_type
44 binary_wiarchive(std::wstreambuf & bsb, unsigned int flags = 0) :
46 binary_wiarchive, std::wistream::char_type, std::wistream::traits_type
51 } // namespace archive
54 // required by smart_cast for compilers not implementing
55 // partial template specialization
56 BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(boost::archive::binary_wiarchive)
58 #endif // BOOST_NO_STD_WSTREAMBUF
59 #endif // BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP