mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 13:43:53 +00:00
17 lines
317 B
C++
17 lines
317 B
C++
#pragma once
|
|
|
|
#include "Reader.h"
|
|
|
|
class InputStream;
|
|
|
|
class InputStreamReader : public Reader {
|
|
private:
|
|
DataInputStream* stream;
|
|
|
|
public:
|
|
InputStreamReader(InputStream* in);
|
|
|
|
virtual void close();
|
|
virtual int read();
|
|
virtual int read(wchar_t cbuf[], unsigned int offset, unsigned int length);
|
|
}; |