aboutsummaryrefslogtreecommitdiff
path: root/src/stream.h
blob: e086e28f824ae74e3dbb5af43c13433f6b0b4a40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef STREAM_H
#define STREAM_H

#include <stdint.h>
#include <stdio.h>

class Stream
{
public:
	Stream();
	virtual ~Stream();

	virtual void close() = 0;
	virtual size_t read( char *pBuf, size_t nBytes ) = 0;
	virtual size_t write( const char *pBuf, size_t nBytes ) = 0;

	virtual long tell() = 0;
	virtual void seek( long offset ) = 0;
	virtual void setPos( long pos ) = 0;
	virtual void setPosEnd( long pos ) = 0;
	virtual bool isEOS() = 0;

private:

};

#endif