Qore Programming Language Reference Manual  0.9.4.6
QC_OutputStream.dox.h
1 namespace Qore {
4 
18 class OutputStream : public StreamBase {
19 
20 public:
22 
24 abstract nothing close();
25 
26 public:
28 
31 
32 public:
34 
41 abstract nothing write(binary data);
42 };
43 }
Qore::OutputStream::constructor
constructor()
Constructor.
Qore::OutputStream::write
abstract nothing write(binary data)
Writes bytes to the output stream.
Qore::OutputStream
This class defines an abstract interface for output streams.
Definition: QC_OutputStream.dox.h:18
Qore::OutputStream::close
abstract nothing close()
Flushes any buffered (unwritten) bytes, closes the output stream and releases all resources.
Qore::StreamBase
This class defines the API for single thread streams.
Definition: QC_StreamBase.dox.h:14
Qore
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:3
Qore::binary
binary binary()
Always returns an empty binary object (of zero length)