From 1b9072c62553bb7974a1518bc14bd5b1376001ed Mon Sep 17 00:00:00 2001 From: Mark Spruiell Date: Tue, 31 Aug 2004 13:10:26 +0000 Subject: adding public streaming API --- cpp/src/Ice/Stream.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cpp/src/Ice/Stream.cpp (limited to 'cpp/src/Ice/Stream.cpp') 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 + +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(); } -- cgit v1.2.3