Qore Programming Language Reference Manual  0.8.13.5
 All Classes Namespaces Functions Variables Groups Pages
QC_StderrOutputStream.dox.h
1 namespace Qore {
4 
23 
24 public:
26 
28 nothing close();
29 
30 public:
32 /***/
33  constructor();
34 
35 public:
37 
49 nothing write(binary data);
50 };
51 };
constructor()
Creates the StderrOutputStream.
nothing close()
Does nothing since stderr cannot be closed.
binary binary()
Always returns an empty binary object (of zero length)
This class defines an abstract interface for output streams.
Definition: QC_OutputStream.dox.h:12
nothing write(binary data)
Writes bytes to the output stream.
This class implements the OutputStream interface for writing bytes to the standard output stream stde...
Definition: QC_StderrOutputStream.dox.h:22