os/ossrv/ossrv_pub/boost_apis/boost/archive/binary_wiarchive.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
#ifndef BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP
sl@0
     2
#define BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP
sl@0
     3
sl@0
     4
// MS compatible compilers support #pragma once
sl@0
     5
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
sl@0
     6
# pragma once
sl@0
     7
#endif
sl@0
     8
sl@0
     9
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
sl@0
    10
// binary_wiarchive.hpp
sl@0
    11
sl@0
    12
// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . 
sl@0
    13
// Use, modification and distribution is subject to the Boost Software
sl@0
    14
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
sl@0
    15
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
    16
sl@0
    17
//  See http://www.boost.org for updates, documentation, and revision history.
sl@0
    18
sl@0
    19
#include <boost/config.hpp>
sl@0
    20
#ifdef BOOST_NO_STD_WSTREAMBUF
sl@0
    21
#error "wide char i/o not supported on this platform"
sl@0
    22
#else
sl@0
    23
sl@0
    24
#include <istream> // wistream
sl@0
    25
#include <boost/archive/binary_iarchive_impl.hpp>
sl@0
    26
sl@0
    27
namespace boost { 
sl@0
    28
namespace archive {
sl@0
    29
sl@0
    30
// do not derive from this class.  If you want to extend this functionality
sl@0
    31
// via inhertance, derived from binary_iarchive_impl instead.  This will
sl@0
    32
// preserve correct static polymorphism.
sl@0
    33
class binary_wiarchive : 
sl@0
    34
    public binary_iarchive_impl<
sl@0
    35
        binary_wiarchive, std::wistream::char_type, std::wistream::traits_type
sl@0
    36
    >
sl@0
    37
{
sl@0
    38
public:
sl@0
    39
    binary_wiarchive(std::wistream & is, unsigned int flags = 0) :
sl@0
    40
        binary_iarchive_impl<
sl@0
    41
            binary_wiarchive, std::wistream::char_type, std::wistream::traits_type
sl@0
    42
        >(is, flags)
sl@0
    43
    {}
sl@0
    44
    binary_wiarchive(std::wstreambuf & bsb, unsigned int flags = 0) :
sl@0
    45
        binary_iarchive_impl<
sl@0
    46
            binary_wiarchive, std::wistream::char_type, std::wistream::traits_type
sl@0
    47
        >(bsb, flags)
sl@0
    48
    {}
sl@0
    49
};
sl@0
    50
sl@0
    51
} // namespace archive
sl@0
    52
} // namespace boost
sl@0
    53
sl@0
    54
// required by smart_cast for compilers not implementing 
sl@0
    55
// partial template specialization
sl@0
    56
BOOST_BROKEN_COMPILER_TYPE_TRAITS_SPECIALIZATION(boost::archive::binary_wiarchive)
sl@0
    57
sl@0
    58
#endif // BOOST_NO_STD_WSTREAMBUF
sl@0
    59
#endif // BOOST_ARCHIVE_BINARY_WIARCHIVE_HPP