summaryrefslogtreecommitdiff
path: root/cs/src/Ice/InputStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/src/Ice/InputStream.cs')
-rw-r--r--cs/src/Ice/InputStream.cs63
1 files changed, 0 insertions, 63 deletions
diff --git a/cs/src/Ice/InputStream.cs b/cs/src/Ice/InputStream.cs
deleted file mode 100644
index 792c200f80c..00000000000
--- a/cs/src/Ice/InputStream.cs
+++ /dev/null
@@ -1,63 +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.
-//
-// **********************************************************************
-
-namespace Ice
-{
- public interface InputStream
- {
- Communicator communicator();
-
- void sliceObjects(bool slice);
-
- bool readBool();
- bool[] readBoolSeq();
-
- byte readByte();
- byte[] readByteSeq();
-
- short readShort();
- short[] readShortSeq();
-
- int readInt();
- int[] readIntSeq();
-
- long readLong();
- long[] readLongSeq();
-
- float readFloat();
- float[] readFloatSeq();
-
- double readDouble();
- double[] readDoubleSeq();
-
- string readString();
- string[] readStringSeq();
-
- int readSize();
-
- ObjectPrx readProxy();
-
- void readObject(ReadObjectCallback cb);
-
- string readTypeId();
-
- void throwException();
-
- void startSlice();
- void endSlice();
- void skipSlice();
-
- void startEncapsulation();
- void endEncapsulation();
-
- void readPendingObjects();
-
- void destroy();
- }
-}