first stubs
[ecparse.git] / FileReaderInput.h
1 /**
2  * © 2008 by David Roden <droden@gmail.com>
3  */
4
5 #ifndef __ECPARSE_FILEREADERINPUT_H__
6 #define __ECPARSE_FILEREADERINPUT_H__
7
8 #include <stdio.h>
9 #include "ReaderInput.h"
10
11 class FileReaderInput : public ReaderInput {
12
13 public:
14         FileReaderInput(FILE *file);
15         ~FileReaderInput();
16
17         int read(void* buffer, size_t length);
18
19 private:
20         FILE* file;
21
22 };
23
24 #endif
25