|
Last change
on this file since c6f23a7 was b57ba05, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 4 years ago |
|
Update headers in C++ files
|
-
Property mode
set to
100644
|
|
File size:
410 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * SPDX-FileCopyrightText: 2018 Jaroslav Jindrak
|
|---|
| 3 | *
|
|---|
| 4 | * SPDX-License-Identifier: BSD-3-Clause
|
|---|
| 5 | */
|
|---|
| 6 |
|
|---|
| 7 | #ifndef LIBCPP_BITS_IO_IOSTREAM
|
|---|
| 8 | #define LIBCPP_BITS_IO_IOSTREAM
|
|---|
| 9 |
|
|---|
| 10 | #include <ios>
|
|---|
| 11 | #include <streambuf>
|
|---|
| 12 | #include <istream>
|
|---|
| 13 | #include <ostream>
|
|---|
| 14 |
|
|---|
| 15 | namespace std
|
|---|
| 16 | {
|
|---|
| 17 | extern istream cin;
|
|---|
| 18 | extern ostream cout;
|
|---|
| 19 |
|
|---|
| 20 | // TODO: add the rest
|
|---|
| 21 |
|
|---|
| 22 | namespace aux
|
|---|
| 23 | {
|
|---|
| 24 | extern ios_base::Init init;
|
|---|
| 25 | }
|
|---|
| 26 | }
|
|---|
| 27 |
|
|---|
| 28 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.