summaryrefslogtreecommitdiff
path: root/cs/src/Ice/BasicInputStream.cs
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2004-10-29 05:30:20 +0000
committerMichi Henning <michi@zeroc.com>2004-10-29 05:30:20 +0000
commit4ed2504cfbf467d87022fb46de6d39366c8283fb (patch)
treec17ec12b60fa280bafd3d471431b75b7ac2d20e0 /cs/src/Ice/BasicInputStream.cs
parentReference refactoring. (diff)
downloadice-4ed2504cfbf467d87022fb46de6d39366c8283fb.tar.bz2
ice-4ed2504cfbf467d87022fb46de6d39366c8283fb.tar.xz
ice-4ed2504cfbf467d87022fb46de6d39366c8283fb.zip
Added code for streaming interfaces.
Diffstat (limited to 'cs/src/Ice/BasicInputStream.cs')
-rw-r--r--cs/src/Ice/BasicInputStream.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/cs/src/Ice/BasicInputStream.cs b/cs/src/Ice/BasicInputStream.cs
new file mode 100644
index 00000000000..ae333117538
--- /dev/null
+++ b/cs/src/Ice/BasicInputStream.cs
@@ -0,0 +1,22 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2004 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 IceInternal
+{
+ public class BasicInputStream : BasicStream
+ {
+ public BasicInputStream(Instance instance, Ice.InputStream inStream)
+ : base(instance)
+ {
+ _in = inStream;
+ }
+
+ public Ice.InputStream _in;
+ }
+}