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