
Go to the source code of this file.
Classes | |
| class | Ostream |
| An Ostream is an abstract base class for all output systems (streams, files, token lists, etc). More... | |
Namespaces | |
| namespace | Foam |
| Namespace for OpenFOAM. | |
Typedefs | |
| typedef Ostream &(* | OstreamManip) (Ostream &) |
| An Ostream manipulator. | |
Functions | |
| Ostream & | operator<< (Ostream &os, std::string_view s) |
| Write operator for std::string_view. | |
| Ostream & | operator<< (Ostream &os, OstreamManip f) |
| operator<< handling for manipulators without arguments | |
| Ostream & | operator<< (Ostream &os, IOstreamManip f) |
| operator<< handling for manipulators without arguments | |
| Ostream & | indent (Ostream &os) |
| Indent stream. | |
| Ostream & | incrIndent (Ostream &os) |
| Increment the indent level. | |
| Ostream & | decrIndent (Ostream &os) |
| Decrement the indent level. | |
| Ostream & | flush (Ostream &os) |
| Flush stream. | |
| Ostream & | endl (Ostream &os) |
| Add newline and flush stream. | |
| Ostream & | beginBlock (Ostream &os) |
| Write begin block group without a name. | |
| Ostream & | endBlock (Ostream &os) |
| Write end block group. | |
| Ostream & | endEntry (Ostream &os) |
| Write end entry (';') followed by newline. | |
Variables | |
| constexpr char | tab = '\t' |
The tab '\t' character(0x09). | |
| constexpr char | nl = '\n' |
The newline '\n' character (0x0a). | |