aboutsummaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-07-31 20:51:28 +0000
committerMike Buland <eichlan@xagasoft.com>2009-07-31 20:51:28 +0000
commitfbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a (patch)
tree4631e5b990624694b3576b037500603abce7ab8a /src/stream.h
parent17ec138bb159df52fb07f2f3ba47816d58cc194e (diff)
downloadlibbu++-fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a.tar.gz
libbu++-fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a.tar.bz2
libbu++-fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a.tar.xz
libbu++-fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a.zip
I switched the Bu::Stream::isEOS function to be named Bu::Stream::isEos, and
also made sure the copyright is at the top of all the files, it's been too long. Anyway, this may effect some code, but not much, and it's an easy enough fix.
Diffstat (limited to 'src/stream.h')
-rw-r--r--src/stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stream.h b/src/stream.h
index 945d308..d6b914c 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -83,7 +83,7 @@ namespace Bu
83 * Are we at the end of the stream? 83 * Are we at the end of the stream?
84 *@returns (bool) Are we at the end of the stream? 84 *@returns (bool) Are we at the end of the stream?
85 */ 85 */
86 virtual bool isEOS() = 0; 86 virtual bool isEos() = 0;
87 87
88 /** 88 /**
89 * Is the stream open? 89 * Is the stream open?
@@ -99,7 +99,7 @@ namespace Bu
99 /** 99 /**
100 * In non-blocking streams this indicates if a read operation will 100 * In non-blocking streams this indicates if a read operation will
101 * return data at the moment or not. In blocking streams this should 101 * return data at the moment or not. In blocking streams this should
102 * return the same value as isEOS(). 102 * return the same value as isEos().
103 */ 103 */
104 virtual bool canRead() = 0; 104 virtual bool canRead() = 0;
105 105