summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Proxy.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2005-07-20 04:07:08 +0000
committerMichi Henning <michi@zeroc.com>2005-07-20 04:07:08 +0000
commit544741283baaed48f8ef64737ebf6284dd5781c8 (patch)
treeee0c377812095448dbf02982be218e69d7a087a3 /cpp/src/Ice/Proxy.cpp
parentDid a make depend. (diff)
downloadice-544741283baaed48f8ef64737ebf6284dd5781c8.tar.bz2
ice-544741283baaed48f8ef64737ebf6284dd5781c8.tar.xz
ice-544741283baaed48f8ef64737ebf6284dd5781c8.zip
Added ice_communicator() and ice_toString() to proxies.
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r--cpp/src/Ice/Proxy.cpp12
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)
{