Qore Programming Language Reference Manual
0.8.13.5
Main Page
Related Pages
Modules
Namespaces
Classes
All
Classes
Namespaces
Functions
Variables
Groups
Pages
QC_TransformOutputStream.dox.h
1
namespace
Qore {
4
10
class
TransformOutputStream
:
public
OutputStream
{
11
12
public
:
14
19
nothing
close
();
20
21
public
:
23
26
constructor
(
Qore::OutputStream
os,
Qore::Transform
t);
27
28
public
:
30
35
nothing
write
(
binary
data);
36
};
37
};
Qore::OutputStream::constructor
constructor()
Constructor.
Qore::binary
binary binary()
Always returns an empty binary object (of zero length)
Qore::TransformOutputStream::close
nothing close()
Flushes any buffered (unwritten) bytes, closes the output stream and releases all resources...
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:10
Qore::OutputStream
This class defines an abstract interface for output streams.
Definition:
QC_OutputStream.dox.h:12
Qore::TransformOutputStream::write
nothing write(binary data)
Writes bytes to the output stream.