2010-05-11 19:42:16 +00:00
|
|
|
// -*- C++ -*-
|
2021-11-17 16:25:01 -05:00
|
|
|
//===----------------------------------------------------------------------===//
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
2019-01-19 10:56:40 +00:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-05-11 19:42:16 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_IOSFWD
|
|
|
|
#define _LIBCPP_IOSFWD
|
|
|
|
|
|
|
|
/*
|
|
|
|
iosfwd synopsis
|
|
|
|
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
|
|
|
|
template<class charT> struct char_traits;
|
2018-12-11 04:35:44 +00:00
|
|
|
template<> struct char_traits<char>;
|
|
|
|
template<> struct char_traits<char8_t>; // C++20
|
|
|
|
template<> struct char_traits<char16_t>;
|
|
|
|
template<> struct char_traits<char32_t>;
|
|
|
|
template<> struct char_traits<wchar_t>;
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
template<class T> class allocator;
|
|
|
|
|
2011-05-13 21:52:40 +00:00
|
|
|
class ios_base;
|
2010-05-11 19:42:16 +00:00
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_ios;
|
|
|
|
|
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_streambuf;
|
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_istream;
|
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_ostream;
|
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_iostream;
|
|
|
|
|
|
|
|
template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
|
|
|
|
class basic_stringbuf;
|
|
|
|
template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
|
|
|
|
class basic_istringstream;
|
|
|
|
template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
|
|
|
|
class basic_ostringstream;
|
|
|
|
template <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
|
|
|
|
class basic_stringstream;
|
|
|
|
|
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_filebuf;
|
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_ifstream;
|
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_ofstream;
|
|
|
|
template <class charT, class traits = char_traits<charT> > class basic_fstream;
|
|
|
|
|
|
|
|
template <class charT, class traits = char_traits<charT> > class istreambuf_iterator;
|
|
|
|
template <class charT, class traits = char_traits<charT> > class ostreambuf_iterator;
|
|
|
|
|
|
|
|
typedef basic_ios<char> ios;
|
|
|
|
typedef basic_ios<wchar_t> wios;
|
|
|
|
|
|
|
|
typedef basic_streambuf<char> streambuf;
|
|
|
|
typedef basic_istream<char> istream;
|
|
|
|
typedef basic_ostream<char> ostream;
|
|
|
|
typedef basic_iostream<char> iostream;
|
|
|
|
|
|
|
|
typedef basic_stringbuf<char> stringbuf;
|
|
|
|
typedef basic_istringstream<char> istringstream;
|
|
|
|
typedef basic_ostringstream<char> ostringstream;
|
|
|
|
typedef basic_stringstream<char> stringstream;
|
|
|
|
|
|
|
|
typedef basic_filebuf<char> filebuf;
|
|
|
|
typedef basic_ifstream<char> ifstream;
|
|
|
|
typedef basic_ofstream<char> ofstream;
|
|
|
|
typedef basic_fstream<char> fstream;
|
|
|
|
|
|
|
|
typedef basic_streambuf<wchar_t> wstreambuf;
|
|
|
|
typedef basic_istream<wchar_t> wistream;
|
|
|
|
typedef basic_ostream<wchar_t> wostream;
|
|
|
|
typedef basic_iostream<wchar_t> wiostream;
|
|
|
|
|
|
|
|
typedef basic_stringbuf<wchar_t> wstringbuf;
|
|
|
|
typedef basic_istringstream<wchar_t> wistringstream;
|
|
|
|
typedef basic_ostringstream<wchar_t> wostringstream;
|
|
|
|
typedef basic_stringstream<wchar_t> wstringstream;
|
|
|
|
|
|
|
|
typedef basic_filebuf<wchar_t> wfilebuf;
|
|
|
|
typedef basic_ifstream<wchar_t> wifstream;
|
|
|
|
typedef basic_ofstream<wchar_t> wofstream;
|
|
|
|
typedef basic_fstream<wchar_t> wfstream;
|
|
|
|
|
|
|
|
template <class state> class fpos;
|
2021-03-23 17:15:07 +01:00
|
|
|
using streampos = fpos<char_traits<char>::state_type>;
|
|
|
|
using wstreampos = fpos<char_traits<wchar_t>::state_type>;
|
|
|
|
using u8streampos = fpos<char_traits<char8_t>::state_type>; // C++20
|
|
|
|
using u16streampos = fpos<char_traits<char16_t>::state_type>;
|
|
|
|
using u32streampos = fpos<char_traits<char32_t>::state_type>;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
} // std
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2022-03-25 12:55:36 -04:00
|
|
|
#include <__assert> // all public C++ headers provide the assertion handler
|
2010-05-11 19:42:16 +00:00
|
|
|
#include <__config>
|
2023-04-20 21:03:40 +02:00
|
|
|
#include <__fwd/fstream.h>
|
|
|
|
#include <__fwd/ios.h>
|
|
|
|
#include <__fwd/istream.h>
|
|
|
|
#include <__fwd/ostream.h>
|
|
|
|
#include <__fwd/sstream.h>
|
|
|
|
#include <__fwd/streambuf.h>
|
2022-10-13 01:03:58 +02:00
|
|
|
#include <__fwd/string.h>
|
2023-04-17 09:38:38 -07:00
|
|
|
#include <__std_mbstate_t.h>
|
2021-12-22 18:14:14 +01:00
|
|
|
#include <version>
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2011-10-17 20:05:10 +00:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2022-02-01 20:16:40 -05:00
|
|
|
# pragma GCC system_header
|
2011-10-17 20:05:10 +00:00
|
|
|
#endif
|
2010-05-11 19:42:16 +00:00
|
|
|
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2023-06-14 10:17:50 -07:00
|
|
|
class _LIBCPP_EXPORTED_FROM_ABI ios_base;
|
2011-01-08 20:00:48 +00:00
|
|
|
|
2010-09-21 16:04:28 +00:00
|
|
|
template <class _CharT, class _Traits = char_traits<_CharT> >
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS istreambuf_iterator;
|
2010-09-21 16:04:28 +00:00
|
|
|
template <class _CharT, class _Traits = char_traits<_CharT> >
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS ostreambuf_iterator;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2017-01-04 23:56:00 +00:00
|
|
|
template <class _State> class _LIBCPP_TEMPLATE_VIS fpos;
|
2010-05-24 17:49:41 +00:00
|
|
|
typedef fpos<mbstate_t> streampos;
|
2023-08-17 18:54:22 +02:00
|
|
|
#ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
|
2010-05-24 17:49:41 +00:00
|
|
|
typedef fpos<mbstate_t> wstreampos;
|
2023-08-17 18:54:22 +02:00
|
|
|
#endif
|
2021-04-18 21:47:08 -04:00
|
|
|
#ifndef _LIBCPP_HAS_NO_CHAR8_T
|
2018-12-11 04:35:44 +00:00
|
|
|
typedef fpos<mbstate_t> u8streampos;
|
|
|
|
#endif
|
2010-05-24 17:49:41 +00:00
|
|
|
typedef fpos<mbstate_t> u16streampos;
|
|
|
|
typedef fpos<mbstate_t> u32streampos;
|
2010-05-11 19:42:16 +00:00
|
|
|
|
2016-02-20 00:19:45 +00:00
|
|
|
// Include other forward declarations here
|
|
|
|
template <class _Tp, class _Alloc = allocator<_Tp> >
|
2017-01-04 23:56:00 +00:00
|
|
|
class _LIBCPP_TEMPLATE_VIS vector;
|
2016-02-20 00:19:45 +00:00
|
|
|
|
2020-10-15 13:27:27 -04:00
|
|
|
template <class _CharT, class _Traits>
|
|
|
|
class __save_flags
|
|
|
|
{
|
|
|
|
typedef basic_ios<_CharT, _Traits> __stream_type;
|
|
|
|
typedef typename __stream_type::fmtflags fmtflags;
|
|
|
|
|
|
|
|
__stream_type& __stream_;
|
|
|
|
fmtflags __fmtflags_;
|
|
|
|
_CharT __fill_;
|
|
|
|
|
|
|
|
__save_flags(const __save_flags&);
|
|
|
|
__save_flags& operator=(const __save_flags&);
|
|
|
|
public:
|
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
|
|
explicit __save_flags(__stream_type& __stream)
|
|
|
|
: __stream_(__stream),
|
|
|
|
__fmtflags_(__stream.flags()),
|
|
|
|
__fill_(__stream.fill())
|
|
|
|
{}
|
|
|
|
_LIBCPP_INLINE_VISIBILITY
|
|
|
|
~__save_flags()
|
|
|
|
{
|
|
|
|
__stream_.flags(__fmtflags_);
|
|
|
|
__stream_.fill(__fill_);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2010-05-11 19:42:16 +00:00
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
2021-04-20 12:03:32 -04:00
|
|
|
#endif // _LIBCPP_IOSFWD
|