X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=ReaderInput.h;fp=ReaderInput.h;h=8c6f7e23a3374b3e52ed8a994a4a05262820d2b9;hb=e1f64147e3eedccbbc59658ddb6cf7992dbd50c1;hp=0000000000000000000000000000000000000000;hpb=62fc975e06d131f7038b5dd59b74428c17e74f65;p=ecparse.git diff --git a/ReaderInput.h b/ReaderInput.h new file mode 100644 index 0000000..8c6f7e2 --- /dev/null +++ b/ReaderInput.h @@ -0,0 +1,19 @@ +/** + * © 2008 by David Roden + */ + +#ifndef __ECPARSE_READERINPUT_H__ +#define __ECPARSE_READERINPUT_H__ + +#include + +class ReaderInput { + +public: + virtual ~ReaderInput(); + + virtual int read(void* buffer, size_t length) = 0; + +}; + +#endif