diff options
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index ca04ffd949b..3cfb4f1e1e7 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -133,6 +133,18 @@ IceProxy::Ice::Object::ice_hash() const return _reference->hash(); } +CommunicatorPtr +IceProxy::Ice::Object::ice_communicator() const +{ + return _reference->getCommunicator(); +} + +string +IceProxy::Ice::Object::ice_toString() const +{ + return _reference->toString(); +} + bool IceProxy::Ice::Object::ice_isA(const string& __id) { |