diff options
Diffstat (limited to 'src/stream.h')
-rw-r--r-- | src/stream.h | 4 |
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 | ||