Qore Programming Language Reference Manual  0.8.13
QC_EncodingConversionInputStream.dox.h
1 namespace Qore {
4 
20 
21 public:
23 
28  constructor(Qore::InputStream is, string sourceEncoding, string destEncoding);
29 
30 public:
32 
43 int peek();
44 
45 public:
47 
63 *binary read(int limit);
64 };
65 };
An InputStream implementation that performs on-the-fly conversion between two character encodings...
Definition: QC_EncodingConversionInputStream.dox.h:19
int peek()
Peeks the next byte available from the input stream; returns -1 if no more data available.
binary binary()
Always returns an empty binary object (of zero length)
constructor()
Constructor.
*binary read(int limit)
Reads bytes (up to a specified limit) from the input stream; returns NOTHING if there are no more byt...
main Qore-language namespace
Definition: Pseudo_QC_All.dox.h:2
This class defines an abstract interface for input streams.
Definition: QC_InputStream.dox.h:12