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/src/Ice/Proxy.cpp | |
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/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index f2b6e188ceb..76b03fa86ff 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -1287,6 +1287,12 @@ ICE_OBJECT_PRX::ice_fixed(const ::Ice::ConnectionPtr& connection) const } } +bool +ICE_OBJECT_PRX::ice_isFixed() const +{ + return FixedReferencePtr::dynamicCast(_reference); +} + ConnectionPtr ICE_OBJECT_PRX::ice_getCachedConnection() const { |