powerd++  0.4.4
Variables
Standard I/O File Access

A set of file instances providing access to stderr, stdout and stdin. More...

Variables

file< link, write > sys::io::ferr {stderr}
 File access instances for stderr.
 
file< link, write > sys::io::fout {stdout}
 File access instances for stdout.
 
file< link, read > sys::io::fin {stdin}
 File access instances for stdin.
 

Detailed Description

A set of file instances providing access to stderr, stdout and stdin.

In theory these should be functions returning a reference to a local static file object, to avoid global object initialisation order issues.

This would be annoying to access, though. In practice it works the way it is and it would be hard to notice if it did not.