aboutsummaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-10-27 23:08:24 +0000
committerMike Buland <eichlan@xagasoft.com>2006-10-27 23:08:24 +0000
commitfa6e658f87726b4108e8019805a2b3387d6d8517 (patch)
tree17f1059a2a60f2223473435a51118110993fd578 /src/stream.h
parente8f7e6ea10efede39afa1698779ed15889cc2fba (diff)
downloadlibbu++-fa6e658f87726b4108e8019805a2b3387d6d8517.tar.gz
libbu++-fa6e658f87726b4108e8019805a2b3387d6d8517.tar.bz2
libbu++-fa6e658f87726b4108e8019805a2b3387d6d8517.tar.xz
libbu++-fa6e658f87726b4108e8019805a2b3387d6d8517.zip
Added the beginings of the new stream system.
Diffstat (limited to 'src/stream.h')
-rw-r--r--src/stream.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h
new file mode 100644
index 0000000..086e4a1
--- /dev/null
+++ b/src/stream.h
@@ -0,0 +1,21 @@
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( char *pBuf, size_t nBytes ) = 0;
16
17private:
18
19};
20
21#endif