diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-09-07 18:14:30 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-09-07 18:14:30 +0000 |
commit | 405ce7e0eb1e116ca35f78cb5d938fd006bbc7d7 (patch) | |
tree | 2a1d9f1273fdb9546e389575c04672b3045c5539 /cpp/src/Ice/Initialize.cpp | |
parent | merging Identity functions into Util (diff) | |
download | ice-405ce7e0eb1e116ca35f78cb5d938fd006bbc7d7.tar.bz2 ice-405ce7e0eb1e116ca35f78cb5d938fd006bbc7d7.tar.xz ice-405ce7e0eb1e116ca35f78cb5d938fd006bbc7d7.zip |
make the communicator accessible
Diffstat (limited to 'cpp/src/Ice/Initialize.cpp')
-rw-r--r-- | cpp/src/Ice/Initialize.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Initialize.cpp b/cpp/src/Ice/Initialize.cpp index 39b161aabd8..f5343e72f0e 100644 --- a/cpp/src/Ice/Initialize.cpp +++ b/cpp/src/Ice/Initialize.cpp @@ -170,13 +170,13 @@ Ice::initializeWithProperties(int& argc, char* argv[], const PropertiesPtr& prop InputStreamPtr Ice::createInputStream(const CommunicatorPtr& communicator, const vector<Byte>& bytes) { - return new InputStreamI(getInstance(communicator), bytes); + return new InputStreamI(communicator, bytes); } OutputStreamPtr Ice::createOutputStream(const CommunicatorPtr& communicator) { - return new OutputStreamI(getInstance(communicator)); + return new OutputStreamI(communicator); } InstancePtr |