summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/LocatorInfo.h
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/LocatorInfo.h
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/LocatorInfo.h')
-rw-r--r--cpp/src/Ice/LocatorInfo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/src/Ice/LocatorInfo.h b/cpp/src/Ice/LocatorInfo.h
index 14e85cca2a3..ebb390eab07 100644
--- a/cpp/src/Ice/LocatorInfo.h
+++ b/cpp/src/Ice/LocatorInfo.h
@@ -15,7 +15,7 @@
#include <Ice/LocatorInfoF.h>
#include <Ice/LocatorF.h>
#include <Ice/ProxyF.h>
-#include <Ice/EndpointF.h>
+#include <Ice/EndpointIF.h>
namespace IceInternal
{
@@ -50,9 +50,9 @@ public:
void clear();
- bool getAdapterEndpoints(const std::string&, ::std::vector<EndpointPtr>&) const;
- void addAdapterEndpoints(const std::string&, const ::std::vector<EndpointPtr>&);
- ::std::vector<EndpointPtr> removeAdapterEndpoints(const std::string&);
+ bool getAdapterEndpoints(const std::string&, ::std::vector<EndpointIPtr>&) const;
+ void addAdapterEndpoints(const std::string&, const ::std::vector<EndpointIPtr>&);
+ ::std::vector<EndpointIPtr> removeAdapterEndpoints(const std::string&);
bool getProxy(const Ice::Identity&, Ice::ObjectPrx&) const;
void addProxy(const Ice::Identity&, const Ice::ObjectPrx&);
@@ -60,7 +60,7 @@ public:
private:
- std::map<std::string, std::vector<EndpointPtr> > _adapterEndpointsMap;
+ std::map<std::string, std::vector<EndpointIPtr> > _adapterEndpointsMap;
std::map<Ice::Identity, Ice::ObjectPrx > _objectMap;
};
@@ -79,13 +79,13 @@ public:
Ice::LocatorPrx getLocator() const;
Ice::LocatorRegistryPrx getLocatorRegistry();
- std::vector<EndpointPtr> getEndpoints(const IndirectReferencePtr&, bool&);
+ std::vector<EndpointIPtr> getEndpoints(const IndirectReferencePtr&, bool&);
void clearCache(const IndirectReferencePtr&);
void clearObjectCache(const IndirectReferencePtr&);
private:
- void trace(const std::string&, const IndirectReferencePtr&, const std::vector<EndpointPtr>&);
+ void trace(const std::string&, const IndirectReferencePtr&, const std::vector<EndpointIPtr>&);
const Ice::LocatorPrx _locator;
Ice::LocatorRegistryPrx _locatorRegistry;