Qore Programming Language Reference Manual
1.17.0
Loading...
Searching...
No Matches
QC_TransformOutputStream.dox.h
1
2
namespace
Qore
{
4
17
class
TransformOutputStream
:
public
OutputStream
{
18
19
public
:
21
27
nothing
close
();
28
29
public
:
31
34
constructor
(
Qore::OutputStream
os,
Qore::Transform
t);
35
36
public
:
38
44
nothing
write
(
binary
data);
45
};
46
}
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:17
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