Qore Programming Language Reference Manual 1.19.2
Loading...
Searching...
No Matches
QC_EncodingConversionOutputStream.dox.h
1
2namespace Qore {
4
23
24public:
26
31nothing close();
32
33public:
35
40 constructor(Qore::OutputStream os, string sourceEncoding, string destEncoding);
41
42public:
44
56nothing write(binary data);
57};
58}
An OutputStream implementation that performs on-the-fly conversion between two character encodings.
Definition: QC_EncodingConversionOutputStream.dox.h:22
nothing write(binary data)
Writes bytes to the output stream.
constructor(Qore::OutputStream os, string sourceEncoding, string destEncoding)
Creates the EncodingConversionOutputStream based on the OutputStream given.
nothing close()
Flushes any buffered (unwritten) bytes, closes the output stream and releases all resources.
This class defines an abstract interface for output streams.
Definition: QC_OutputStream.dox.h:18
binary binary()
Always returns an empty binary object (of zero length)
Qore namespace.
Definition: QC_AbstractSmartLock.dox.h:2