GM6000 Digital Heater Controller Branch: main
SDX-1330
StdOut.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Stdio_StdOut_h_
2#define Cpl_Io_Stdio_StdOut_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
16
17///
18namespace Cpl {
19///
20namespace Io {
21///
22namespace Stdio {
23
24
25/** This concrete class represents the C-library 'stdout' stream.
26
27 NOTE: Many instances of this class may be created - even
28 though there is only ONE stdout. This is OK because
29 all instance reference the systems/platform 'stdout'
30 */
31class StdOut : public Output_
32{
33public:
34 /// Constructor
36
37
38public:
39 /** Overriding inherited behavior so as to NOT close the actual native
40 stream. In general closing stdin/stdout/stderr is bad thing.
41 */
42 void close();
43};
44
45}; // end namespaces
46};
47};
48#endif // end header latch
This concrete class implements a Output stream using the underlying platform's native OS 'file interf...
Definition Output_.h:44
This concrete class represents the C-library 'stdout' stream.
Definition StdOut.h:32
StdOut()
Constructor.
void close()
Overriding inherited behavior so as to NOT close the actual native stream.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20