aboutsummaryrefslogtreecommitdiff
path: root/src/stream.h
blob: 32e5432839e219cb9be6c388da6a456f1c6357ca (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
#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;

private:

};

#endif