diff options
Diffstat (limited to 'cs/src/Ice/ObjectWriter.cs')
-rw-r--r-- | cs/src/Ice/ObjectWriter.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cs/src/Ice/ObjectWriter.cs b/cs/src/Ice/ObjectWriter.cs deleted file mode 100644 index 29991d4a5f7..00000000000 --- a/cs/src/Ice/ObjectWriter.cs +++ /dev/null @@ -1,30 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -using System.Diagnostics; - -namespace Ice { - - public abstract class ObjectWriter : ObjectImpl - { - public abstract void write(OutputStream outStream); - - public override void write__(IceInternal.BasicStream os) - { - IceInternal.BasicOutputStream bos = (IceInternal.BasicOutputStream)os; - write(bos.out_); - } - - public override void read__(IceInternal.BasicStream istr, bool rid) - { - Debug.Assert(false); - } - } - -} |