GM6000 Digital Heater Controller Branch: main
SDX-1330
StdErr.h
Go to the documentation of this file.
1#ifndef Cpl_Io_Stdio_StdErr_h_
2#define Cpl_Io_Stdio_StdErr_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 'stderr' stream.
26 NOTE: Many instances of this class may be created - even
27 though there is only ONE stderr. This is OK because
28 all instance reference the systems/platform 'stderr'
29 */
30class StdErr : public Output_
31{
32public:
33 /// Constructor
35
36
37public:
38 /** Overriding inherited behavior so as to NOT close the actual native
39 stream. In general closing stdin/stdout/stderr is bad thing.
40 */
41 void close();
42};
43
44}; // end namespaces
45};
46};
47#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 'stderr' stream.
Definition StdErr.h:31
void close()
Overriding inherited behavior so as to NOT close the actual native stream.
StdErr()
Constructor.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20