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/Output.cc | |
parent | 692672cd414addadfe666904c10d4492a7fcbe17 (diff) |
Better duplicating handling...
Diffstat (limited to 'lib/Output.cc')
-rw-r--r-- | lib/Output.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Output.cc b/lib/Output.cc index 27f28d2..deecfb0 100644 --- a/lib/Output.cc +++ b/lib/Output.cc @@ -17,6 +17,9 @@ Output::Output(String no, int trunc = 1) throw (GeneralException) : } } +Output::Output(const Output & o) : Handle(o), n(o.n) { +} + bool Output::CanWrite() { return 1; } |