diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-09-24 00:19:12 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-09-24 00:19:12 +0000 |
commit | 17df4c2b9616c29865b0d893cc797d4938a660a2 (patch) | |
tree | d31d62c5694279747909bbab2b8be93f01a7fb7b /src/process.h | |
parent | 5230927c4f087cf2dcaac4fb9ed133c1ff3e2269 (diff) | |
download | libbu++-17df4c2b9616c29865b0d893cc797d4938a660a2.tar.gz libbu++-17df4c2b9616c29865b0d893cc797d4938a660a2.tar.bz2 libbu++-17df4c2b9616c29865b0d893cc797d4938a660a2.tar.xz libbu++-17df4c2b9616c29865b0d893cc797d4938a660a2.zip |
Wholly crap. Added the Fifo, fixed a bunch of bugs, made things more standard,
now I have a huge list of new functions to add. Also, we discovered that if
we add -W it produces more warnings, warnings about things that we'd like to
know about. I have a lot of work to go fixing that...
Diffstat (limited to '')
-rw-r--r-- | src/process.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/process.h b/src/process.h index 27e2a32..a63fbf5 100644 --- a/src/process.h +++ b/src/process.h | |||
@@ -32,6 +32,7 @@ namespace Bu | |||
32 | virtual size_t read( void *pBuf, size_t nBytes ); | 32 | virtual size_t read( void *pBuf, size_t nBytes ); |
33 | virtual size_t readErr( void *pBuf, size_t nBytes ); | 33 | virtual size_t readErr( void *pBuf, size_t nBytes ); |
34 | virtual size_t write( const void *pBuf, size_t nBytes ); | 34 | virtual size_t write( const void *pBuf, size_t nBytes ); |
35 | using Stream::write; | ||
35 | 36 | ||
36 | virtual long tell(); | 37 | virtual long tell(); |
37 | virtual void seek( long offset ); | 38 | virtual void seek( long offset ); |