mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-22 10:55:33 +00:00
restructure codebase according to vcproj filters
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
#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