#include <bits/c++config.h>#include <ostream>#include <istream>Go to the source code of this file.
Namespaces | |
| namespace | std |
Standard Stream Objects | |
| The <iostream> header declares the eight standard stream objects. For other declarations, see http://gcc.gnu.org/onlinedocs/libstdc++/27_io/howto.html#10 and the I/O forward declarations
They are required by default to cooperate with the global C library's | |
| istream | std::cin |
| Linked to standard input. | |
| ostream | std::cout |
| Linked to standard output. | |
| ostream | std::cerr |
| Linked to standard error (unbuffered). | |
| ostream | std::clog |
| Linked to standard error (buffered). | |
Defines | |
| #define | _GLIBCXX_IOSTREAM 1 |
Variables | |
| static ios_base::Init | std::__ioinit |
Definition in file iostream.
1.4.7