projects
/
ecparse.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add hash tag
[ecparse.git]
/
ReaderInput.h
1
/**
2
* © 2008 by David Roden <droden@gmail.com>
3
*/
4
5
#pragma once
6
7
#include <stdio.h>
8
9
class ReaderInput {
10
11
public:
12
virtual ~ReaderInput();
13
14
virtual size_t read(void* buffer, size_t length) = 0;
15
virtual bool isEOF() = 0;
16
17
};
18