aboutsummaryrefslogtreecommitdiff
path: root/src/old/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/old/stream.h')
-rw-r--r--src/old/stream.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/old/stream.h b/src/old/stream.h
new file mode 100644
index 0000000..e086e28
--- /dev/null
+++ b/src/old/stream.h
@@ -0,0 +1,27 @@
1#ifndef STREAM_H
2#define STREAM_H
3
4#include <stdint.h>
5#include <stdio.h>
6
7class Stream
8{
9public:
10 Stream();
11 virtual ~Stream();
12
13 virtual void close() = 0;
14 virtual size_t read( char *pBuf, size_t nBytes ) = 0;
15 virtual size_t write( const char *pBuf, size_t nBytes ) = 0;
16
17 virtual long tell() = 0;
18 virtual void seek( long offset ) = 0;
19 virtual void setPos( long pos ) = 0;
20 virtual void setPosEnd( long pos ) = 0;
21 virtual bool isEOS() = 0;
22
23private:
24
25};
26
27#endif