summaryrefslogtreecommitdiff
path: root/cs/src/Ice/ObjectReader.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/src/Ice/ObjectReader.cs')
-rw-r--r--cs/src/Ice/ObjectReader.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/cs/src/Ice/ObjectReader.cs b/cs/src/Ice/ObjectReader.cs
deleted file mode 100644
index c96d280ae25..00000000000
--- a/cs/src/Ice/ObjectReader.cs
+++ /dev/null
@@ -1,29 +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 ObjectReader : ObjectImpl
- {
- public abstract void read(InputStream inStream, bool rid);
-
- public override void write__(IceInternal.BasicStream os)
- {
- Debug.Assert(false);
- }
-
- public override void read__(IceInternal.BasicStream istr, bool rid)
- {
- IceInternal.BasicInputStream bis = (IceInternal.BasicInputStream)istr;
- read(bis.in_, rid);
- }
- }
-}