📄 binary_wiarchive.hpp
字号:
#ifndef BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP#define BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP// MS compatible compilers support #pragma once#if defined(_MSC_VER) && (_MSC_VER >= 1020)# pragma once#endif/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8// binary_wiarchive.hpp// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . // Use, modification and distribution is subject to the Boost Software// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at// http://www.boost.org/LICENSE_1_0.txt)// See http://www.boost.org for updates, documentation, and revision history.#include <boost/config.hpp>#ifdef BOOST_NO_STD_WSTREAMBUF#error "wide char i/o not supported on this platform"#else#include <istream>#include <boost/archive/basic_binary_iprimitive.hpp>#include <boost/archive/basic_binary_iarchive.hpp>namespace boost { namespace archive {template<class Archive>class binary_wiarchive_impl : public basic_binary_iprimitive<Archive, std::wistream>, public basic_binary_iarchive<Archive>{#ifdef BOOST_NO_MEMBER_TEMPLATE_FRIENDSpublic:#else friend class detail::interface_iarchive<Archive>; friend class basic_binary_iarchive<Archive>; friend class load_access;protected:#endif // note: the following should not needed - but one compiler (vc 7.1) // fails to compile one test (test_shared_ptr) without it !!! template<class T> void load_override(T & t, BOOST_PFTO int){ basic_binary_iarchive<Archive>::load_override(t, 0); } void init(){ basic_binary_iarchive<Archive>::init(); basic_binary_iprimitive<Archive, std::wistream>::init(); } binary_wiarchive_impl(std::wistream & is, unsigned int flags = 0) : basic_binary_iprimitive<Archive, std::wistream>( is, 0 != (flags & no_codecvt) ), basic_binary_iarchive<Archive>() {}};// do not derive from this class. If you want to extend this functionality// via inhertance, derived from binary_iarchive_impl instead. This will// preserve correct static polymorphism.class binary_wiarchive : public binary_wiarchive_impl<binary_wiarchive>{public: binary_wiarchive(std::wistream & is, unsigned int flags = 0) : binary_wiarchive_impl<binary_wiarchive>(is, flags | no_header) { if(0 == (flags & no_header)) init(); }};} // namespace archive} // namespace boost#endif // BOOST_NO_STD_WSTREAMBUF#endif // BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -