diff options
Diffstat (limited to '')
-rw-r--r-- | src/membuf.cpp | 81 |
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 | |||
3 | using namespace Bu; | ||
4 | |||
5 | Bu::MemBuf::MemBuf() | ||
6 | { | ||
7 | } | ||
8 | |||
9 | Bu::MemBuf::~MemBuf() | ||
10 | { | ||
11 | } | ||
12 | |||
13 | void Bu::MemBuf::close() | ||
14 | { | ||
15 | } | ||
16 | |||
17 | size_t Bu::MemBuf::read( void *pBuf, size_t nBytes ) | ||
18 | { | ||
19 | |||
20 | } | ||
21 | |||
22 | size_t Bu::MemBuf::write( const void *pBuf, size_t nBytes ) | ||
23 | { | ||
24 | } | ||
25 | |||
26 | long Bu::MemBuf::tell() | ||
27 | { | ||
28 | } | ||
29 | |||
30 | void Bu::MemBuf::seek( long offset ) | ||
31 | { | ||
32 | } | ||
33 | |||
34 | void Bu::MemBuf::setPos( long pos ) | ||
35 | { | ||
36 | } | ||
37 | |||
38 | void Bu::MemBuf::setPosEnd( long pos ) | ||
39 | { | ||
40 | } | ||
41 | |||
42 | bool Bu::MemBuf::isEOS() | ||
43 | { | ||
44 | } | ||
45 | |||
46 | bool Bu::MemBuf::isOpen() | ||
47 | { | ||
48 | } | ||
49 | |||
50 | void Bu::MemBuf::flush() | ||
51 | { | ||
52 | } | ||
53 | |||
54 | bool Bu::MemBuf::canRead() | ||
55 | { | ||
56 | } | ||
57 | |||
58 | bool Bu::MemBuf::canWrite() | ||
59 | { | ||
60 | } | ||
61 | |||
62 | bool Bu::MemBuf::isReadable() | ||
63 | { | ||
64 | } | ||
65 | |||
66 | bool Bu::MemBuf::isWritable() | ||
67 | { | ||
68 | } | ||
69 | |||
70 | bool Bu::MemBuf::isSeekable() | ||
71 | { | ||
72 | } | ||
73 | |||
74 | bool Bu::MemBuf::isBlocking() | ||
75 | { | ||
76 | } | ||
77 | |||
78 | void Bu::MemBuf::setBlocking( bool bBlocking ) | ||
79 | { | ||
80 | } | ||
81 | |||