2010-05-12 03:42:16 +08:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===--------------------------- iostream ---------------------------------===//
|
|
|
|
//
|
2010-05-12 05:36:01 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
2010-11-17 06:09:02 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_IOSTREAM
|
|
|
|
#define _LIBCPP_IOSTREAM
|
|
|
|
|
|
|
|
/*
|
|
|
|
iostream synopsis
|
|
|
|
|
|
|
|
#include <ios>
|
|
|
|
#include <streambuf>
|
|
|
|
#include <istream>
|
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
|
|
|
|
extern istream cin;
|
|
|
|
extern ostream cout;
|
|
|
|
extern ostream cerr;
|
|
|
|
extern ostream clog;
|
|
|
|
extern wistream wcin;
|
|
|
|
extern wostream wcout;
|
|
|
|
extern wostream wcerr;
|
|
|
|
extern wostream wclog;
|
|
|
|
|
|
|
|
} // std
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <__config>
|
|
|
|
#include <ios>
|
|
|
|
#include <streambuf>
|
|
|
|
#include <istream>
|
|
|
|
#include <ostream>
|
|
|
|
|
2011-10-18 04:05:10 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2010-05-12 03:42:16 +08:00
|
|
|
#pragma GCC system_header
|
2011-10-18 04:05:10 +08:00
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2015-03-26 22:35:46 +08:00
|
|
|
#ifndef _LIBCPP_HAS_NO_STDIN
|
2013-03-07 07:30:19 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS istream cin;
|
|
|
|
extern _LIBCPP_FUNC_VIS wistream wcin;
|
2015-03-26 22:35:46 +08:00
|
|
|
#endif
|
|
|
|
#ifndef _LIBCPP_HAS_NO_STDOUT
|
|
|
|
extern _LIBCPP_FUNC_VIS ostream cout;
|
2013-03-07 07:30:19 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS wostream wcout;
|
2015-03-26 22:35:46 +08:00
|
|
|
#endif
|
|
|
|
extern _LIBCPP_FUNC_VIS ostream cerr;
|
2013-03-07 07:30:19 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS wostream wcerr;
|
2015-03-26 22:35:46 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS ostream clog;
|
2013-03-07 07:30:19 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS wostream wclog;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
|
|
|
#endif // _LIBCPP_IOSTREAM
|