diff options
author | Bernard Normier <bernard@zeroc.com> | 2017-02-10 12:26:16 -0500 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2017-02-10 12:26:16 -0500 |
commit | b2923da71983b0ccac196ac2d0b22b1296a153ed (patch) | |
tree | 431de1f175ba93975308627c391ace28fcba7cab /cpp/src/Ice/ObjectAdapterI.h | |
parent | Fixed (ICE-7577) - IllegalStateException in the IceGridGUI (diff) | |
download | ice-b2923da71983b0ccac196ac2d0b22b1296a153ed.tar.bz2 ice-b2923da71983b0ccac196ac2d0b22b1296a153ed.tar.xz ice-b2923da71983b0ccac196ac2d0b22b1296a153ed.zip |
ICE-7342: add setPublishedEndpoints to ObjectAdapter
Diffstat (limited to 'cpp/src/Ice/ObjectAdapterI.h')
-rw-r--r-- | cpp/src/Ice/ObjectAdapterI.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cpp/src/Ice/ObjectAdapterI.h b/cpp/src/Ice/ObjectAdapterI.h index d86ce43235c..c1a731946f0 100644 --- a/cpp/src/Ice/ObjectAdapterI.h +++ b/cpp/src/Ice/ObjectAdapterI.h @@ -85,10 +85,11 @@ public: virtual void setLocator(const LocatorPrxPtr&); virtual Ice::LocatorPrxPtr getLocator() const; - virtual void refreshPublishedEndpoints(); - virtual EndpointSeq getEndpoints() const; + + virtual void refreshPublishedEndpoints(); virtual EndpointSeq getPublishedEndpoints() const; + virtual void setPublishedEndpoints(const EndpointSeq&); bool isLocal(const ObjectPrxPtr&) const; |