Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/c++/v1/__cxx03/iostream is written in an unsupported language. File is not indexed.

0001 // -*- C++ -*-
0002 //===----------------------------------------------------------------------===//
0003 //
0004 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0005 // See https://llvm.org/LICENSE.txt for license information.
0006 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0007 //
0008 //===----------------------------------------------------------------------===//
0009 
0010 #ifndef _LIBCPP___CXX03_IOSTREAM
0011 #define _LIBCPP___CXX03_IOSTREAM
0012 
0013 /*
0014     iostream synopsis
0015 
0016 #include <__cxx03/ios>
0017 #include <__cxx03/istream>
0018 #include <__cxx03/ostream>
0019 #include <__cxx03/streambuf>
0020 
0021 namespace std {
0022 
0023 extern istream cin;
0024 extern ostream cout;
0025 extern ostream cerr;
0026 extern ostream clog;
0027 extern wistream wcin;
0028 extern wostream wcout;
0029 extern wostream wcerr;
0030 extern wostream wclog;
0031 
0032 }  // std
0033 
0034 */
0035 
0036 #include <__cxx03/__config>
0037 #include <__cxx03/version>
0038 
0039 // standard-mandated includes
0040 
0041 // [iostream.syn]
0042 #include <__cxx03/ios>
0043 #include <__cxx03/istream>
0044 #include <__cxx03/ostream>
0045 #include <__cxx03/streambuf>
0046 
0047 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
0048 #  pragma GCC system_header
0049 #endif
0050 
0051 _LIBCPP_BEGIN_NAMESPACE_STD
0052 
0053 extern _LIBCPP_EXPORTED_FROM_ABI istream cin;
0054 extern _LIBCPP_EXPORTED_FROM_ABI ostream cout;
0055 extern _LIBCPP_EXPORTED_FROM_ABI ostream cerr;
0056 extern _LIBCPP_EXPORTED_FROM_ABI ostream clog;
0057 
0058 #ifndef _LIBCPP_HAS_NO_WIDE_CHARACTERS
0059 extern _LIBCPP_EXPORTED_FROM_ABI wistream wcin;
0060 extern _LIBCPP_EXPORTED_FROM_ABI wostream wcout;
0061 extern _LIBCPP_EXPORTED_FROM_ABI wostream wcerr;
0062 extern _LIBCPP_EXPORTED_FROM_ABI wostream wclog;
0063 #endif
0064 
0065 _LIBCPP_END_NAMESPACE_STD
0066 
0067 #endif // _LIBCPP___CXX03_IOSTREAM