xref: /freebsd/contrib/llvm-project/libcxx/include/iosfwd (revision 06c3fb2749bda94cb5201f81ffdb8fa6c3161b2e)
10b57cec5SDimitry Andric// -*- C++ -*-
2349cc55cSDimitry Andric//===----------------------------------------------------------------------===//
30b57cec5SDimitry Andric//
40b57cec5SDimitry Andric// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
50b57cec5SDimitry Andric// See https://llvm.org/LICENSE.txt for license information.
60b57cec5SDimitry Andric// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
70b57cec5SDimitry Andric//
80b57cec5SDimitry Andric//===----------------------------------------------------------------------===//
90b57cec5SDimitry Andric
100b57cec5SDimitry Andric#ifndef _LIBCPP_IOSFWD
110b57cec5SDimitry Andric#define _LIBCPP_IOSFWD
120b57cec5SDimitry Andric
130b57cec5SDimitry Andric/*
140b57cec5SDimitry Andric    iosfwd synopsis
150b57cec5SDimitry Andric
160b57cec5SDimitry Andricnamespace std
170b57cec5SDimitry Andric{
180b57cec5SDimitry Andric
190b57cec5SDimitry Andrictemplate<class charT> struct char_traits;
200b57cec5SDimitry Andrictemplate<>            struct char_traits<char>;
210b57cec5SDimitry Andrictemplate<>            struct char_traits<char8_t>;  // C++20
220b57cec5SDimitry Andrictemplate<>            struct char_traits<char16_t>;
230b57cec5SDimitry Andrictemplate<>            struct char_traits<char32_t>;
240b57cec5SDimitry Andrictemplate<>            struct char_traits<wchar_t>;
250b57cec5SDimitry Andric
260b57cec5SDimitry Andrictemplate<class T>     class allocator;
270b57cec5SDimitry Andric
280b57cec5SDimitry Andricclass ios_base;
290b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_ios;
300b57cec5SDimitry Andric
310b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_streambuf;
320b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_istream;
330b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_ostream;
340b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_iostream;
350b57cec5SDimitry Andric
360b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
370b57cec5SDimitry Andric    class basic_stringbuf;
380b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
390b57cec5SDimitry Andric    class basic_istringstream;
400b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
410b57cec5SDimitry Andric    class basic_ostringstream;
420b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT>, class Allocator = allocator<charT> >
430b57cec5SDimitry Andric    class basic_stringstream;
440b57cec5SDimitry Andric
450b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_filebuf;
460b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_ifstream;
470b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_ofstream;
480b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class basic_fstream;
490b57cec5SDimitry Andric
500b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class istreambuf_iterator;
510b57cec5SDimitry Andrictemplate <class charT, class traits = char_traits<charT> > class ostreambuf_iterator;
520b57cec5SDimitry Andric
530b57cec5SDimitry Andrictypedef basic_ios<char>              ios;
540b57cec5SDimitry Andrictypedef basic_ios<wchar_t>           wios;
550b57cec5SDimitry Andric
560b57cec5SDimitry Andrictypedef basic_streambuf<char>        streambuf;
570b57cec5SDimitry Andrictypedef basic_istream<char>          istream;
580b57cec5SDimitry Andrictypedef basic_ostream<char>          ostream;
590b57cec5SDimitry Andrictypedef basic_iostream<char>         iostream;
600b57cec5SDimitry Andric
610b57cec5SDimitry Andrictypedef basic_stringbuf<char>        stringbuf;
620b57cec5SDimitry Andrictypedef basic_istringstream<char>    istringstream;
630b57cec5SDimitry Andrictypedef basic_ostringstream<char>    ostringstream;
640b57cec5SDimitry Andrictypedef basic_stringstream<char>     stringstream;
650b57cec5SDimitry Andric
660b57cec5SDimitry Andrictypedef basic_filebuf<char>          filebuf;
670b57cec5SDimitry Andrictypedef basic_ifstream<char>         ifstream;
680b57cec5SDimitry Andrictypedef basic_ofstream<char>         ofstream;
690b57cec5SDimitry Andrictypedef basic_fstream<char>          fstream;
700b57cec5SDimitry Andric
710b57cec5SDimitry Andrictypedef basic_streambuf<wchar_t>     wstreambuf;
720b57cec5SDimitry Andrictypedef basic_istream<wchar_t>       wistream;
730b57cec5SDimitry Andrictypedef basic_ostream<wchar_t>       wostream;
740b57cec5SDimitry Andrictypedef basic_iostream<wchar_t>      wiostream;
750b57cec5SDimitry Andric
760b57cec5SDimitry Andrictypedef basic_stringbuf<wchar_t>     wstringbuf;
770b57cec5SDimitry Andrictypedef basic_istringstream<wchar_t> wistringstream;
780b57cec5SDimitry Andrictypedef basic_ostringstream<wchar_t> wostringstream;
790b57cec5SDimitry Andrictypedef basic_stringstream<wchar_t>  wstringstream;
800b57cec5SDimitry Andric
810b57cec5SDimitry Andrictypedef basic_filebuf<wchar_t>       wfilebuf;
820b57cec5SDimitry Andrictypedef basic_ifstream<wchar_t>      wifstream;
830b57cec5SDimitry Andrictypedef basic_ofstream<wchar_t>      wofstream;
840b57cec5SDimitry Andrictypedef basic_fstream<wchar_t>       wfstream;
850b57cec5SDimitry Andric
860b57cec5SDimitry Andrictemplate <class state> class fpos;
87fe6060f1SDimitry Andricusing streampos  = fpos<char_traits<char>::state_type>;
88fe6060f1SDimitry Andricusing wstreampos = fpos<char_traits<wchar_t>::state_type>;
89fe6060f1SDimitry Andricusing u8streampos = fpos<char_traits<char8_t>::state_type>; // C++20
90fe6060f1SDimitry Andricusing u16streampos = fpos<char_traits<char16_t>::state_type>;
91fe6060f1SDimitry Andricusing u32streampos = fpos<char_traits<char32_t>::state_type>;
920b57cec5SDimitry Andric
930b57cec5SDimitry Andric}  // std
940b57cec5SDimitry Andric
950b57cec5SDimitry Andric*/
960b57cec5SDimitry Andric
9781ad6265SDimitry Andric#include <__assert> // all public C++ headers provide the assertion handler
980b57cec5SDimitry Andric#include <__config>
99*06c3fb27SDimitry Andric#include <__fwd/fstream.h>
100*06c3fb27SDimitry Andric#include <__fwd/ios.h>
101*06c3fb27SDimitry Andric#include <__fwd/istream.h>
102*06c3fb27SDimitry Andric#include <__fwd/ostream.h>
103*06c3fb27SDimitry Andric#include <__fwd/sstream.h>
104*06c3fb27SDimitry Andric#include <__fwd/streambuf.h>
105bdd1243dSDimitry Andric#include <__fwd/string.h>
106*06c3fb27SDimitry Andric#include <__std_mbstate_t.h>
10704eeddc0SDimitry Andric#include <version>
1080b57cec5SDimitry Andric
1090b57cec5SDimitry Andric#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1100b57cec5SDimitry Andric#  pragma GCC system_header
1110b57cec5SDimitry Andric#endif
1120b57cec5SDimitry Andric
1130b57cec5SDimitry Andric_LIBCPP_BEGIN_NAMESPACE_STD
1140b57cec5SDimitry Andric
115*06c3fb27SDimitry Andricclass _LIBCPP_EXPORTED_FROM_ABI ios_base;
1160b57cec5SDimitry Andric
1170b57cec5SDimitry Andrictemplate <class _CharT, class _Traits = char_traits<_CharT> >
1180b57cec5SDimitry Andric    class _LIBCPP_TEMPLATE_VIS istreambuf_iterator;
1190b57cec5SDimitry Andrictemplate <class _CharT, class _Traits = char_traits<_CharT> >
1200b57cec5SDimitry Andric    class _LIBCPP_TEMPLATE_VIS ostreambuf_iterator;
1210b57cec5SDimitry Andric
1220b57cec5SDimitry Andrictemplate <class _State>             class _LIBCPP_TEMPLATE_VIS fpos;
1230b57cec5SDimitry Andrictypedef fpos<mbstate_t>    streampos;
1240b57cec5SDimitry Andrictypedef fpos<mbstate_t>    wstreampos;
125fe6060f1SDimitry Andric#ifndef _LIBCPP_HAS_NO_CHAR8_T
1260b57cec5SDimitry Andrictypedef fpos<mbstate_t>    u8streampos;
1270b57cec5SDimitry Andric#endif
1280b57cec5SDimitry Andrictypedef fpos<mbstate_t>    u16streampos;
1290b57cec5SDimitry Andrictypedef fpos<mbstate_t>    u32streampos;
1300b57cec5SDimitry Andric
1310b57cec5SDimitry Andric// Include other forward declarations here
1320b57cec5SDimitry Andrictemplate <class _Tp, class _Alloc = allocator<_Tp> >
1330b57cec5SDimitry Andricclass _LIBCPP_TEMPLATE_VIS vector;
1340b57cec5SDimitry Andric
135e8d8bef9SDimitry Andrictemplate <class _CharT, class _Traits>
136e8d8bef9SDimitry Andricclass __save_flags
137e8d8bef9SDimitry Andric{
138e8d8bef9SDimitry Andric    typedef basic_ios<_CharT, _Traits> __stream_type;
139e8d8bef9SDimitry Andric    typedef typename __stream_type::fmtflags fmtflags;
140e8d8bef9SDimitry Andric
141e8d8bef9SDimitry Andric    __stream_type& __stream_;
142e8d8bef9SDimitry Andric    fmtflags       __fmtflags_;
143e8d8bef9SDimitry Andric    _CharT         __fill_;
144e8d8bef9SDimitry Andric
145e8d8bef9SDimitry Andric    __save_flags(const __save_flags&);
146e8d8bef9SDimitry Andric    __save_flags& operator=(const __save_flags&);
147e8d8bef9SDimitry Andricpublic:
148e8d8bef9SDimitry Andric    _LIBCPP_INLINE_VISIBILITY
149e8d8bef9SDimitry Andric    explicit __save_flags(__stream_type& __stream)
150e8d8bef9SDimitry Andric        : __stream_(__stream),
151e8d8bef9SDimitry Andric          __fmtflags_(__stream.flags()),
152e8d8bef9SDimitry Andric          __fill_(__stream.fill())
153e8d8bef9SDimitry Andric        {}
154e8d8bef9SDimitry Andric    _LIBCPP_INLINE_VISIBILITY
155e8d8bef9SDimitry Andric    ~__save_flags()
156e8d8bef9SDimitry Andric    {
157e8d8bef9SDimitry Andric        __stream_.flags(__fmtflags_);
158e8d8bef9SDimitry Andric        __stream_.fill(__fill_);
159e8d8bef9SDimitry Andric    }
160e8d8bef9SDimitry Andric};
161e8d8bef9SDimitry Andric
1620b57cec5SDimitry Andric_LIBCPP_END_NAMESPACE_STD
1630b57cec5SDimitry Andric
1640b57cec5SDimitry Andric#endif // _LIBCPP_IOSFWD
165