aboutsummaryrefslogtreecommitdiff
path: root/src/membuf.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-06-29 00:48:32 +0000
committerMike Buland <eichlan@xagasoft.com>2007-06-29 00:48:32 +0000
commitec8ed8b4b44c7b039e87faaa50bb4d503393d336 (patch)
tree7ea933f72bf2186f12658f96a30e451622fc485a /src/membuf.h
parent76ea96f91115585f7c6b49d11ba60ec15bee12e6 (diff)
downloadlibbu++-ec8ed8b4b44c7b039e87faaa50bb4d503393d336.tar.gz
libbu++-ec8ed8b4b44c7b039e87faaa50bb4d503393d336.tar.bz2
libbu++-ec8ed8b4b44c7b039e87faaa50bb4d503393d336.tar.xz
libbu++-ec8ed8b4b44c7b039e87faaa50bb4d503393d336.zip
A few changes here and there, mainly related to getting the new Server system
working in optimal condition...
Diffstat (limited to 'src/membuf.h')
-rw-r--r--src/membuf.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/membuf.h b/src/membuf.h
index b82f943..8f53d4b 100644
--- a/src/membuf.h
+++ b/src/membuf.h
@@ -15,6 +15,7 @@ namespace Bu
15 { 15 {
16 public: 16 public:
17 MemBuf(); 17 MemBuf();
18 MemBuf( const Bu::FString &str );
18 virtual ~MemBuf(); 19 virtual ~MemBuf();
19 20
20 virtual void close(); 21 virtual void close();
@@ -41,6 +42,8 @@ namespace Bu
41 virtual bool isBlocking(); 42 virtual bool isBlocking();
42 virtual void setBlocking( bool bBlocking=true ); 43 virtual void setBlocking( bool bBlocking=true );
43 44
45 Bu::FString &getString();
46
44 private: 47 private:
45 Bu::FString sBuf; 48 Bu::FString sBuf;
46 long nPos; 49 long nPos;