diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-01-23 16:44:10 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-01-23 16:44:10 +0000 |
commit | 51f9aa16cbdd78c0b31483df26d0f7e81376f974 (patch) | |
tree | d00b95cbcd607fc4d6a70d133794d69b99491d55 /src/socket.h | |
parent | 1ea5bd399b081b598435e52854107bc506640a28 (diff) | |
download | libbu++-51f9aa16cbdd78c0b31483df26d0f7e81376f974.tar.gz libbu++-51f9aa16cbdd78c0b31483df26d0f7e81376f974.tar.bz2 libbu++-51f9aa16cbdd78c0b31483df26d0f7e81376f974.tar.xz libbu++-51f9aa16cbdd78c0b31483df26d0f7e81376f974.zip |
Added a new helper to the Stream classes, a write function that takes a single
Bu::FString reference as a parameter. Unfortunately you need to remember to add
"using Stream::write;" to each child class so they can take advantage of it.
Strange, no?
Also, cleaned up a bunch of header files, I'm trying to move towards headers
only including other headers that they absolutely need, otherwise just creating
forward decleration sections at the top of each.
Diffstat (limited to '')
-rw-r--r-- | src/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/socket.h b/src/socket.h index 1f1e929..b09f911 100644 --- a/src/socket.h +++ b/src/socket.h | |||
@@ -34,6 +34,7 @@ namespace Bu | |||
34 | virtual size_t write( const void *pBuf, size_t nBytes ); | 34 | virtual size_t write( const void *pBuf, size_t nBytes ); |
35 | virtual size_t write( const void *pBuf, size_t nBytes, | 35 | virtual size_t write( const void *pBuf, size_t nBytes, |
36 | uint32_t nSec, uint32_t nUSec=0 ); | 36 | uint32_t nSec, uint32_t nUSec=0 ); |
37 | using Stream::write; | ||
37 | 38 | ||
38 | virtual long tell(); | 39 | virtual long tell(); |
39 | virtual void seek( long offset ); | 40 | virtual void seek( long offset ); |