diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-09-09 09:11:57 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-09-09 09:11:57 +0000 |
commit | c0a57699ea87ef0c8850ff8aef4bde5f9ec972e0 (patch) | |
tree | b362f5386068eace6a61031dd175ad066a645cd3 /cpp/src/Ice/EndpointFactoryManager.cpp | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=335 (diff) | |
download | ice-c0a57699ea87ef0c8850ff8aef4bde5f9ec972e0.tar.bz2 ice-c0a57699ea87ef0c8850ff8aef4bde5f9ec972e0.tar.xz ice-c0a57699ea87ef0c8850ff8aef4bde5f9ec972e0.zip |
Added new proxy methods: ice_getEndpoints(), ice_getAdapterId(),
ice_newEndpoints(), ice_newAdapterId().
Diffstat (limited to 'cpp/src/Ice/EndpointFactoryManager.cpp')
-rw-r--r-- | cpp/src/Ice/EndpointFactoryManager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/Ice/EndpointFactoryManager.cpp b/cpp/src/Ice/EndpointFactoryManager.cpp index 9f6c81ee6f0..8536c6d0381 100644 --- a/cpp/src/Ice/EndpointFactoryManager.cpp +++ b/cpp/src/Ice/EndpointFactoryManager.cpp @@ -9,7 +9,7 @@ #include <Ice/EndpointFactoryManager.h> #include <Ice/Endpoint.h> -#include <Ice/UnknownEndpoint.h> +#include <Ice/UnknownEndpointI.h> #include <Ice/BasicStream.h> #include <Ice/LocalException.h> #include <Ice/Instance.h> @@ -63,7 +63,7 @@ IceInternal::EndpointFactoryManager::get(Short type) const return 0; } -EndpointPtr +EndpointIPtr IceInternal::EndpointFactoryManager::create(const string& str) const { IceUtil::Mutex::Lock sync(*this); // TODO: Necessary? @@ -105,7 +105,7 @@ IceInternal::EndpointFactoryManager::create(const string& str) const return 0; } -EndpointPtr +EndpointIPtr IceInternal::EndpointFactoryManager::read(BasicStream* s) const { IceUtil::Mutex::Lock sync(*this); // TODO: Necessary? @@ -124,7 +124,7 @@ IceInternal::EndpointFactoryManager::read(BasicStream* s) const } } - return new UnknownEndpoint(type, s); + return new UnknownEndpointI(type, s); } void |