first stubs
[ecparse.git] / ReaderInput.h
1 /**
2  * © 2008 by David Roden <droden@gmail.com>
3  */
4
5 #ifndef __ECPARSE_READERINPUT_H__
6 #define __ECPARSE_READERINPUT_H__
7
8 #include <stdio.h>
9
10 class ReaderInput {
11
12 public:
13         virtual ~ReaderInput();
14
15         virtual int read(void* buffer, size_t length) = 0;
16
17 };
18
19 #endif