mirror of
https://github.com/DrPerkyLegit/LCEServerTest.git
synced 2026-06-25 05:45:39 +00:00
removed git history
This commit is contained in:
18
Minecraft.World/InputStreamReader.h
Normal file
18
Minecraft.World/InputStreamReader.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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);
|
||||
};
|
||||
Reference in New Issue
Block a user