os/ossrv/ossrv_pub/boost_apis/boost/io_fwd.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
//  Boost io_fwd.hpp header file  --------------------------------------------//
sl@0
     2
sl@0
     3
//  Copyright 2002 Daryle Walker.  Use, modification, and distribution are subject
sl@0
     4
//  to the Boost Software License, Version 1.0.  (See accompanying file
sl@0
     5
//  LICENSE_1_0.txt or a copy at <http://www.boost.org/LICENSE_1_0.txt>.)
sl@0
     6
sl@0
     7
//  See <http://www.boost.org/libs/io/> for the library's home page.
sl@0
     8
sl@0
     9
#ifndef BOOST_IO_FWD_HPP
sl@0
    10
#define BOOST_IO_FWD_HPP
sl@0
    11
sl@0
    12
#include <iosfwd>  // for std::char_traits (declaration)
sl@0
    13
sl@0
    14
sl@0
    15
namespace boost
sl@0
    16
{
sl@0
    17
namespace io
sl@0
    18
{
sl@0
    19
sl@0
    20
sl@0
    21
//  From <boost/io/ios_state.hpp>  -------------------------------------------//
sl@0
    22
sl@0
    23
class ios_flags_saver;
sl@0
    24
class ios_precision_saver;
sl@0
    25
class ios_width_saver;
sl@0
    26
class ios_base_all_saver;
sl@0
    27
sl@0
    28
template < typename Ch, class Tr = ::std::char_traits<Ch> >
sl@0
    29
    class basic_ios_iostate_saver;
sl@0
    30
template < typename Ch, class Tr = ::std::char_traits<Ch> >
sl@0
    31
    class basic_ios_exception_saver;
sl@0
    32
template < typename Ch, class Tr = ::std::char_traits<Ch> >
sl@0
    33
    class basic_ios_tie_saver;
sl@0
    34
template < typename Ch, class Tr = ::std::char_traits<Ch> >
sl@0
    35
    class basic_ios_rdbuf_saver;
sl@0
    36
template < typename Ch, class Tr = ::std::char_traits<Ch> >
sl@0
    37
    class basic_ios_fill_saver;
sl@0
    38
template < typename Ch, class Tr = ::std::char_traits<Ch> >
sl@0
    39
    class basic_ios_locale_saver;
sl@0
    40
template < typename Ch, class Tr = ::std::char_traits<Ch> >
sl@0
    41
    class basic_ios_all_saver;
sl@0
    42
sl@0
    43
typedef basic_ios_iostate_saver<char>        ios_iostate_saver;
sl@0
    44
typedef basic_ios_iostate_saver<wchar_t>    wios_iostate_saver;
sl@0
    45
typedef basic_ios_exception_saver<char>      ios_exception_saver;
sl@0
    46
typedef basic_ios_exception_saver<wchar_t>  wios_exception_saver;
sl@0
    47
typedef basic_ios_tie_saver<char>            ios_tie_saver;
sl@0
    48
typedef basic_ios_tie_saver<wchar_t>        wios_tie_saver;
sl@0
    49
typedef basic_ios_rdbuf_saver<char>          ios_rdbuf_saver;
sl@0
    50
typedef basic_ios_rdbuf_saver<wchar_t>      wios_rdbuf_saver;
sl@0
    51
typedef basic_ios_fill_saver<char>           ios_fill_saver;
sl@0
    52
typedef basic_ios_fill_saver<wchar_t>       wios_fill_saver;
sl@0
    53
typedef basic_ios_locale_saver<char>         ios_locale_saver;
sl@0
    54
typedef basic_ios_locale_saver<wchar_t>     wios_locale_saver;
sl@0
    55
typedef basic_ios_all_saver<char>            ios_all_saver;
sl@0
    56
typedef basic_ios_all_saver<wchar_t>        wios_all_saver;
sl@0
    57
sl@0
    58
class ios_iword_saver;
sl@0
    59
class ios_pword_saver;
sl@0
    60
class ios_all_word_saver;
sl@0
    61
sl@0
    62
sl@0
    63
}  // namespace io
sl@0
    64
}  // namespace boost
sl@0
    65
sl@0
    66
sl@0
    67
#endif  // BOOST_IO_FWD_HPP