blob: c835fcf0f875130fa596d729af4e7ab13c591525 [file] [log] [blame]
#ifndef INPUTSTREAM_HPP
#define INPUTSTREAM_HPP
#include <stdio.h>
class InputStream
{
public:
virtual int read (char *buffer, int offset, int length) = 0;
};
#endif