summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Stream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Stream.cpp')
-rw-r--r--cpp/src/Ice/Stream.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/cpp/src/Ice/Stream.cpp b/cpp/src/Ice/Stream.cpp
new file mode 100644
index 00000000000..624bc5fbe16
--- /dev/null
+++ b/cpp/src/Ice/Stream.cpp
@@ -0,0 +1,19 @@
+// **********************************************************************
+//
+// 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.
+//
+// **********************************************************************
+
+#include <Ice/Stream.h>
+
+using namespace std;
+using namespace Ice;
+using namespace IceInternal;
+
+void IceInternal::incRef(InputStream* p) { p->__incRef(); }
+void IceInternal::decRef(InputStream* p) { p->__decRef(); }
+void IceInternal::incRef(OutputStream* p) { p->__incRef(); }
+void IceInternal::decRef(OutputStream* p) { p->__decRef(); }