Qore Programming Language Reference Manual  1.0.8
QC_StderrOutputStream.dox.h
1 namespace Qore {
4 
28 
29 public:
31 
33 nothing close();
34 
35 public:
37 /***/
38  constructor();
39 
40 public:
42 
54 nothing write(binary data);
55 };
56 }
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:18
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
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:27