diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-08-04 14:34:20 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-08-04 14:34:20 +0000 |
commit | 819cfbbc5f8caa65575caefb3e602d2d9f7425b3 (patch) | |
tree | 28cd579d2d7df17eee495d31598c4d570c56c95a /src/nullstream.cpp | |
parent | b5fea4de7f2e20fbb768aef2ed72249c80b1bf9d (diff) | |
download | libbu++-819cfbbc5f8caa65575caefb3e602d2d9f7425b3.tar.gz libbu++-819cfbbc5f8caa65575caefb3e602d2d9f7425b3.tar.bz2 libbu++-819cfbbc5f8caa65575caefb3e602d2d9f7425b3.tar.xz libbu++-819cfbbc5f8caa65575caefb3e602d2d9f7425b3.zip |
Fixed some minor compilation warnings in some tests, and started adding
NullStream. This version doesn't compile yet, but will soon. You can back off
a revision or just delet nullstream for now.
Diffstat (limited to 'src/nullstream.cpp')
-rw-r--r-- | src/nullstream.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/nullstream.cpp b/src/nullstream.cpp new file mode 100644 index 0000000..364b58a --- /dev/null +++ b/src/nullstream.cpp | |||
@@ -0,0 +1,31 @@ | |||
1 | #include "bu/nullstream.h" | ||
2 | |||
3 | Bu::NullStream::NullStream() | ||
4 | { | ||
5 | } | ||
6 | |||
7 | Bu::NullStream::~NullStream() | ||
8 | { | ||
9 | } | ||
10 | |||
11 | void Bu::NullStream::close(); | ||
12 | size_t Bu::NullStream::read( void *pBuf, size_t nBytes ); | ||
13 | Bu::FString Bu::NullStream::readLine(); | ||
14 | size_t Bu::NullStream::write( const void *pBuf, size_t nBytes ); | ||
15 | long Bu::NullStream::tell(); | ||
16 | void Bu::NullStream::seek( long offset ); | ||
17 | void Bu::NullStream::setPos( long pos ); | ||
18 | void Bu::NullStream::setPosEnd( long pos ); | ||
19 | bool Bu::NullStream::isEos(); | ||
20 | bool Bu::NullStream::isOpen(); | ||
21 | void Bu::NullStream::flush(); | ||
22 | bool Bu::NullStream::canRead(); | ||
23 | bool Bu::NullStream::canWrite(); | ||
24 | bool Bu::NullStream::isReadable(); | ||
25 | bool Bu::NullStream::isWritable(); | ||
26 | bool Bu::NullStream::isSeekable(); | ||
27 | bool Bu::NullStream::isBlocking(); | ||
28 | void Bu::NullStream::setBlocking( bool bBlocking=true ); | ||
29 | void Bu::NullStream::setSize( long iSize ); | ||
30 | |||
31 | |||