diff options
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 |