diff options
author | Bernard Normier <bernard@zeroc.com> | 2019-04-12 17:09:41 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2019-04-12 17:16:24 -0400 |
commit | 7ef0d2af9c2a1f031cf46f9dbb0092295fc7cffe (patch) | |
tree | e631373222d873ad4dec401bb41da22fdfd8a923 /cpp/include | |
parent | Regenerate test projects (diff) | |
download | ice-7ef0d2af9c2a1f031cf46f9dbb0092295fc7cffe.tar.bz2 ice-7ef0d2af9c2a1f031cf46f9dbb0092295fc7cffe.tar.xz ice-7ef0d2af9c2a1f031cf46f9dbb0092295fc7cffe.zip |
Removed throws from some proxy methods
Diffstat (limited to 'cpp/include')
-rw-r--r-- | cpp/include/Ice/Proxy.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpp/include/Ice/Proxy.h b/cpp/include/Ice/Proxy.h index c52ca6a59cb..4056f04a515 100644 --- a/cpp/include/Ice/Proxy.h +++ b/cpp/include/Ice/Proxy.h @@ -993,6 +993,12 @@ public: ::std::shared_ptr<::Ice::ObjectPrx> ice_fixed(const ::std::shared_ptr<::Ice::Connection>& connection) const; /** + * Determines whether this proxy is a fixed proxy. + * @return True if this proxy is a fixed proxy, false otherwise. + */ + bool ice_isFixed() const; + + /** * Obtains the Connection for this proxy. If the proxy does not yet have an established connection, * it first attempts to create a connection. * @return The connection for this proxy. @@ -2659,6 +2665,12 @@ public: ::Ice::ObjectPrx ice_fixed(const ::Ice::ConnectionPtr& connection) const; /** + * Determines whether this proxy is a fixed proxy. + * @return True if this proxy is a fixed proxy, false otherwise. + */ + bool ice_isFixed() const; + + /** * Obtains the Connection for this proxy. If the proxy does not yet have an established connection, * it first attempts to create a connection. * @return The connection for this proxy. |