diff options
Diffstat (limited to '')
-rw-r--r-- | src/sbuffer.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sbuffer.cpp b/src/sbuffer.cpp index 0ed0f47..f84f8a3 100644 --- a/src/sbuffer.cpp +++ b/src/sbuffer.cpp | |||
@@ -60,3 +60,8 @@ void SBuffer::setPosEnd( long pos ) | |||
60 | nPos = fbData.getLength() - pos; | 60 | nPos = fbData.getLength() - pos; |
61 | } | 61 | } |
62 | 62 | ||
63 | bool SBuffer::isEOS() | ||
64 | { | ||
65 | return nPos == fbData.getLength(); | ||
66 | } | ||
67 | |||