diff options
Diffstat (limited to 'cppe/src/IceE/Proxy.cpp')
-rw-r--r-- | cppe/src/IceE/Proxy.cpp | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/cppe/src/IceE/Proxy.cpp b/cppe/src/IceE/Proxy.cpp index c2cf22025d3..974c9ac31a9 100644 --- a/cppe/src/IceE/Proxy.cpp +++ b/cppe/src/IceE/Proxy.cpp @@ -14,9 +14,9 @@ #include <IceE/Instance.h> #include <IceE/BasicStream.h> #include <IceE/LocalExceptions.h> -#ifdef ICEE_HAS_ROUTER
-# include <IceE/RouterInfo.h>
-#endif
+#ifdef ICEE_HAS_ROUTER +# include <IceE/RouterInfo.h> +#endif using namespace std; using namespace Ice; @@ -146,6 +146,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) { |