GM6000 Digital Heater Controller Branch: main
SDX-1330
Classes
Cpl::Io::Stdio Namespace Reference

The Stdio namespace provides concrete classes for the C Library's 'stdin', 'stdout', and 'stderr' input/output streams. More...

Detailed Description

The Stdio namespace provides concrete classes for the C Library's 'stdin', 'stdout', and 'stderr' input/output streams.

The class definitions (i.e the header files) are platform independent so the Application can use them directly without incurring any platform specific dependencies. However, It is the Application's responsibility to build & link the appropriate platform specific implementation of these classes.

This namespace also supplies a few concrete helper classes that can be used for implementations of several Cpl::Io abstract interfaces using the same platform specific implementing of the 'File Streams' that was/is used for the standard Input, Output, Error streams.

Note: The "_ansi/' implementation of the Stdio classes uses the C library's 'FILE*' methods (fwrite, fread, etc.).

Classes

class  Input_
 This concrete class implements a Input stream using the underlying platform's native OS 'file interface' for the C library's stdin, stdout, and stderr streams. More...
 
class  InputOutput_
 This concrete class implements a Input-Output stream. More...
 
class  Output_
 This concrete class implements a Output stream using the underlying platform's native OS 'file interface' for the C library's stdin, stdout, and stderr streams. More...
 
class  StdErr
 This concrete class represents the C-library 'stderr' stream. More...
 
class  StdIn
 This concrete class represents the C-library 'stdin' stream. More...
 
class  StdOut
 This concrete class represents the C-library 'stdout' stream. More...