diff options
author | Pixel <Pixel> | 2001-10-29 16:23:12 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2001-10-29 16:23:12 +0000 |
commit | a259ec553a1d685ebb976ec34eaaf700d24ee0c4 (patch) | |
tree | ca310bfa8858bc3d5a1602789ecbe41e9c2ca3dd /lib/Handle.cc | |
parent | 2e5bed84841f33ff28dd95b77b555720c875a286 (diff) |
More tasking implementation
Diffstat (limited to 'lib/Handle.cc')
-rw-r--r-- | lib/Handle.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/Handle.cc b/lib/Handle.cc index c3efc55..0f1791e 100644 --- a/lib/Handle.cc +++ b/lib/Handle.cc @@ -138,3 +138,15 @@ void Handle::close() { closed = 1; } + +bool Handle::CanRead(void) { + return false; +} + +bool Handle::CanWrite(void) { + return false; +} + +String Handle::GetName(void) { + return _("Bare Handle - should not happend"); +} |