aboutsummaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-08-24 15:24:16 +0000
committerMike Buland <eichlan@xagasoft.com>2009-08-24 15:24:16 +0000
commit728c597690056536a15910fb64a2b6ea104aa975 (patch)
tree882f9dcd9c5683e673beba0fb85122ffefe027bd /src/stream.h
parent6d4a2e8f5153eefcada061d346aa5d852f2500ee (diff)
downloadlibbu++-728c597690056536a15910fb64a2b6ea104aa975.tar.gz
libbu++-728c597690056536a15910fb64a2b6ea104aa975.tar.bz2
libbu++-728c597690056536a15910fb64a2b6ea104aa975.tar.xz
libbu++-728c597690056536a15910fb64a2b6ea104aa975.zip
Fixed a minor helper in Bu::MemBuf, and corrected some docs on Bu::Stream, the
synopsis line made the canWrite function misleading. I also addad a script that could actually be used for any project, it builds a tarball release of all the files that are in SVN, so it will skip object code and the like.
Diffstat (limited to '')
-rw-r--r--src/stream.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stream.h b/src/stream.h
index d6b914c..f0f1af3 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -105,9 +105,9 @@ namespace Bu
105 105
106 /** 106 /**
107 * In non-blocking streams this indicates if a write operation will 107 * In non-blocking streams this indicates if a write operation will
108 * succeed or fail. In some cases writing is not allowed (e.g. 108 * actually write one or more bytes. In some cases writing is not
109 * internal buffers are full) temporarilly. In blocking streams this 109 * allowed (e.g. internal buffers are full) temporarilly. In blocking
110 * should return the same value as isWritable. 110 * streams this should return the same value as isWritable.
111 */ 111 */
112 virtual bool canWrite() = 0; 112 virtual bool canWrite() = 0;
113 113