aboutsummaryrefslogtreecommitdiff
path: root/src/membuf.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-06-26 19:22:02 +0000
committerMike Buland <eichlan@xagasoft.com>2007-06-26 19:22:02 +0000
commit01ecf54b07e75c17ca5f7039084daeefaea9a1c7 (patch)
tree9e3581a62e292ba86bfa80160dd4d1a85f3a5863 /src/membuf.cpp
parent20584158e3d7f6a012a677476ba36d1691c7aa66 (diff)
downloadlibbu++-01ecf54b07e75c17ca5f7039084daeefaea9a1c7.tar.gz
libbu++-01ecf54b07e75c17ca5f7039084daeefaea9a1c7.tar.bz2
libbu++-01ecf54b07e75c17ca5f7039084daeefaea9a1c7.tar.xz
libbu++-01ecf54b07e75c17ca5f7039084daeefaea9a1c7.zip
Fixed a bug in the plugger and added the skeleton of the MemBuf class.
Diffstat (limited to 'src/membuf.cpp')
-rw-r--r--src/membuf.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/src/membuf.cpp b/src/membuf.cpp
new file mode 100644
index 0000000..fdb4366
--- /dev/null
+++ b/src/membuf.cpp
@@ -0,0 +1,81 @@
1#include "bu/membuf.h"
2
3using namespace Bu;
4
5Bu::MemBuf::MemBuf()
6{
7}
8
9Bu::MemBuf::~MemBuf()
10{
11}
12
13void Bu::MemBuf::close()
14{
15}
16
17size_t Bu::MemBuf::read( void *pBuf, size_t nBytes )
18{
19
20}
21
22size_t Bu::MemBuf::write( const void *pBuf, size_t nBytes )
23{
24}
25
26long Bu::MemBuf::tell()
27{
28}
29
30void Bu::MemBuf::seek( long offset )
31{
32}
33
34void Bu::MemBuf::setPos( long pos )
35{
36}
37
38void Bu::MemBuf::setPosEnd( long pos )
39{
40}
41
42bool Bu::MemBuf::isEOS()
43{
44}
45
46bool Bu::MemBuf::isOpen()
47{
48}
49
50void Bu::MemBuf::flush()
51{
52}
53
54bool Bu::MemBuf::canRead()
55{
56}
57
58bool Bu::MemBuf::canWrite()
59{
60}
61
62bool Bu::MemBuf::isReadable()
63{
64}
65
66bool Bu::MemBuf::isWritable()
67{
68}
69
70bool Bu::MemBuf::isSeekable()
71{
72}
73
74bool Bu::MemBuf::isBlocking()
75{
76}
77
78void Bu::MemBuf::setBlocking( bool bBlocking )
79{
80}
81