summaryrefslogtreecommitdiff
path: root/generic/Handle.cpp
diff options
context:
space:
mode:
authorPixel <Pixel>2002-08-17 01:48:34 +0000
committerPixel <Pixel>2002-08-17 01:48:34 +0000
commit11bf45f50739afb923829b3cc32efb9c8c009613 (patch)
tree1a9a691cdd3a466d55259aa31fff1bfc0fcd8e7a /generic/Handle.cpp
parent08ecf5aae1c7276bb1e78a288cba3a731604758e (diff)
Working with Baltisot now....
Diffstat (limited to 'generic/Handle.cpp')
-rw-r--r--generic/Handle.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/generic/Handle.cpp b/generic/Handle.cpp
index 6d02381..44b01de 100644
--- a/generic/Handle.cpp
+++ b/generic/Handle.cpp
@@ -289,3 +289,11 @@ ssize_t Handle::uread(void * buf, size_t count) {
off_t Handle::tell() {
return itell;
}
+
+bool Handle::CanSeek() {
+ return 0;
+}
+
+off_t Handle::seek(off_t, int) throw(GeneralException) {
+ throw IOGeneral("Handle " + GetName() + " can't seek");
+}