summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/EndpointFactoryManager.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-09-09 09:11:57 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-09-09 09:11:57 +0000
commitc0a57699ea87ef0c8850ff8aef4bde5f9ec972e0 (patch)
treeb362f5386068eace6a61031dd175ad066a645cd3 /cpp/src/Ice/EndpointFactoryManager.cpp
parenthttp://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=335 (diff)
downloadice-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.cpp8
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