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 // same as binary_wiarchive below - without the shared_ptr_helper
31 class naked_binary_wiarchive
:
32 public binary_iarchive_impl
<
33 boost::archive::naked_binary_wiarchive
,
34 std::wistream::char_type
,
35 std::wistream::traits_type
39 naked_binary_wiarchive(std::wistream
& is
, unsigned int flags
= 0) :
41 naked_binary_wiarchive
,
42 std::wistream::char_type
,
43 std::wistream::traits_type
46 naked_binary_wiarchive(std::wstreambuf
& bsb
, unsigned int flags
= 0) :
48 naked_binary_wiarchive
,
49 std::wistream::char_type
,
50 std::wistream::traits_type
55 } // namespace archive
58 // note special treatment of shared_ptr. This type needs a special
59 // structure associated with every archive. We created a "mix-in"
60 // class to provide this functionality. Since shared_ptr holds a
61 // special esteem in the boost library - we included it here by default.
62 #include <boost/archive/shared_ptr_helper.hpp>
67 class binary_wiarchive
:
68 public binary_iarchive_impl
<
69 binary_wiarchive
, std::wistream::char_type
, std::wistream::traits_type
73 binary_wiarchive(std::wistream
& is
, unsigned int flags
= 0) :
75 binary_wiarchive
, std::wistream::char_type
, std::wistream::traits_type
78 binary_wiarchive(std::wstreambuf
& bsb
, unsigned int flags
= 0) :
80 binary_wiarchive
, std::wistream::char_type
, std::wistream::traits_type
85 } // namespace archive
89 BOOST_SERIALIZATION_REGISTER_ARCHIVE(boost::archive::binary_wiarchive
)
91 #endif // BOOST_NO_STD_WSTREAMBUF
92 #endif // BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP