#include <ios>
#include <bits/ostream.tcc>
Include dependency graph for ostream:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Namespaces | |
namespace | std |
Functions | |
template<typename CharT, typename Traits> | |
basic_ostream< CharT, Traits > & | endl (basic_ostream< CharT, Traits > &__os) |
Write a newline and flush the stream. | |
template<typename CharT, typename Traits> | |
basic_ostream< CharT, Traits > & | ends (basic_ostream< CharT, Traits > &__os) |
Write a null character into the output sequence. | |
template<typename CharT, typename Traits> | |
basic_ostream< CharT, Traits > & | flush (basic_ostream< CharT, Traits > &__os) |
Flushes the output stream. |
#include
this header in your programs, rather than any of the "st[dl]_*.h" implementation files.
Definition in file ostream.
|
Write a newline and flush the stream. This manipulator is often mistakenly used when a simple newline is desired, leading to poor buffering performance. See http://gcc.gnu.org/onlinedocs/libstdc++/27_io/howto.html#2 for more on this subject. |
|
Write a null character into the output sequence.
"Null character" is Definition at line 529 of file ostream. References std::basic_ostream< CharT, Traits >::put(). |
|
Flushes the output stream.
This manipulator simply calls the stream's Definition at line 539 of file ostream. References std::basic_ostream< CharT, Traits >::flush(). |