diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-08-31 13:10:26 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-08-31 13:10:26 +0000 |
commit | 1b9072c62553bb7974a1518bc14bd5b1376001ed (patch) | |
tree | be4733dea3441c3d0424e28eb7a2ec235fcaa8d2 /cpp/src/Ice/Stream.cpp | |
parent | minor edits (diff) | |
download | ice-1b9072c62553bb7974a1518bc14bd5b1376001ed.tar.bz2 ice-1b9072c62553bb7974a1518bc14bd5b1376001ed.tar.xz ice-1b9072c62553bb7974a1518bc14bd5b1376001ed.zip |
adding public streaming API
Diffstat (limited to 'cpp/src/Ice/Stream.cpp')
-rw-r--r-- | cpp/src/Ice/Stream.cpp | 19 |
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(); } |