Qore Programming Language Reference Manual
1.12.4
Loading...
Searching...
No Matches
QC_TransformOutputStream.dox.h
1
2
namespace
Qore
{
4
16
class
TransformOutputStream
:
public
OutputStream
{
17
18
public
:
20
25
nothing
close
();
26
27
public
:
29
32
constructor
(
Qore::OutputStream
os,
Qore::Transform
t);
33
34
public
:
36
41
nothing
write
(
binary
data);
42
};
43
}
Qore::OutputStream
This class defines an abstract interface for output streams.
Definition:
QC_OutputStream.dox.h:18
Qore::Transform
Marker interface for transformations usable in TransformOutputStream and TransformInputStream.
Definition:
QC_Transform.dox.h:12
Qore::TransformOutputStream
This class implements the OutputStream interface for writing bytes to another OutputStream while appl...
Definition:
QC_TransformOutputStream.dox.h:16
Qore::TransformOutputStream::constructor
constructor(Qore::OutputStream os, Qore::Transform t)
Creates the TransformOutputStream.
Qore::TransformOutputStream::write
nothing write(binary data)
Writes bytes to the output stream.
Qore::TransformOutputStream::close
nothing close()
Flushes any buffered (unwritten) bytes, closes the output stream and releases all resources.
Qore::binary
binary binary()
Always returns an empty binary object (of zero length)
Qore
Qore namespace.
Definition:
QC_AbstractSmartLock.dox.h:2