aboutsummaryrefslogtreecommitdiff
path: root/src/buffer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.cpp')
-rw-r--r--src/buffer.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/buffer.cpp b/src/buffer.cpp
new file mode 100644
index 0000000..abb4fed
--- /dev/null
+++ b/src/buffer.cpp
@@ -0,0 +1,17 @@
1#include "bu/buffer.h"
2
3Bu::Buffer::Buffer( Bu::Stream &rNext, int iBufsize ) :
4 Bu::Filter( rNext ),
5 sSoFar( 0 ),
6 iBufSize( iBufSize ),
7 sReadBuf( NULL ),
8 sWriteBuf( NULL ),
9 iReadBufFill( 0 ),
10 iWriteBufFill( 0 )
11{
12}
13
14Bu::Buffer::~Buffer()
15{
16}
17