diff options
author | Pixel <Pixel> | 2002-01-10 14:15:35 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-01-10 14:15:35 +0000 |
commit | 53de7397c5d9cfcbf480f122a379f077345f8ba8 (patch) | |
tree | f8061c3fe184c635d2fa419ed039e0611a11063f /lib/Input.cc | |
parent | 692672cd414addadfe666904c10d4492a7fcbe17 (diff) |
Better duplicating handling...
Diffstat (limited to 'lib/Input.cc')
-rw-r--r-- | lib/Input.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Input.cc b/lib/Input.cc index 318821d..5652c57 100644 --- a/lib/Input.cc +++ b/lib/Input.cc @@ -26,6 +26,9 @@ Input::Input(String no) throw (GeneralException) : date_modif = s.st_mtime; } +Input::Input(const Input & i) : Handle(i), n(i.n), size(i.size), date_modif(i.date_modif) { +} + bool Input::CanWrite() { return 0; } |