diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-08 18:29:04 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-08 18:29:04 +0000 |
commit | 8deff6fb42b498ba440bfd400475d287c67c5409 (patch) | |
tree | 88f513cdd0b68d6cd2e52a8db54c8ff54433b188 /cpp/src/Ice/Proxy.cpp | |
parent | workaround for nasty bison problem (diff) | |
download | ice-8deff6fb42b498ba440bfd400475d287c67c5409.tar.bz2 ice-8deff6fb42b498ba440bfd400475d287c67c5409.tar.xz ice-8deff6fb42b498ba440bfd400475d287c67c5409.zip |
functional/shared/handle changes
Diffstat (limited to 'cpp/src/Ice/Proxy.cpp')
-rw-r--r-- | cpp/src/Ice/Proxy.cpp | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/cpp/src/Ice/Proxy.cpp b/cpp/src/Ice/Proxy.cpp index f80f0a17eed..87643fd767a 100644 --- a/cpp/src/Ice/Proxy.cpp +++ b/cpp/src/Ice/Proxy.cpp @@ -88,7 +88,7 @@ IceProxy::Ice::Object::_isA(const string& s) { try { - Handle< ::IceDelegate::Ice::Object> __del = __getDelegate(); + ::IceInternal::Handle< ::IceDelegate::Ice::Object> __del = __getDelegate(); return __del->_isA(s); } catch (const LocationForward& __ex) @@ -114,7 +114,7 @@ IceProxy::Ice::Object::_ping() { try { - Handle< ::IceDelegate::Ice::Object> __del = __getDelegate(); + ::IceInternal::Handle< ::IceDelegate::Ice::Object> __del = __getDelegate(); __del->_ping(); return; } @@ -136,7 +136,7 @@ IceProxy::Ice::Object::_ping() void IceProxy::Ice::Object::_flush() { - Handle< ::IceDelegate::Ice::Object> __del = __getDelegate(); + ::IceInternal::Handle< ::IceDelegate::Ice::Object> __del = __getDelegate(); __del->_flush(); } @@ -409,7 +409,7 @@ IceProxy::Ice::Object::~Object() { } -Handle< ::IceDelegate::Ice::Object> +::IceInternal::Handle< ::IceDelegate::Ice::Object> IceProxy::Ice::Object::__getDelegate() { JTCSyncT<JTCMutex> sync(*this); @@ -432,10 +432,10 @@ IceProxy::Ice::Object::__getDelegate() return _delegate; } -Handle< ::IceDelegateM::Ice::Object> +::IceInternal::Handle< ::IceDelegateM::Ice::Object> IceProxy::Ice::Object::__createDelegateM() { - return Handle< ::IceDelegateM::Ice::Object>(new ::IceDelegateM::Ice::Object); + return ::IceInternal::Handle< ::IceDelegateM::Ice::Object>(new ::IceDelegateM::Ice::Object); } void @@ -538,7 +538,7 @@ IceDelegateM::Ice::Object::setup(const ReferencePtr& reference) case Reference::ModeBatchOneway: { remove_copy_if(_reference->endpoints.begin(), _reference->endpoints.end(), back_inserter(endpoints), - not1(constMemFun(&Endpoint::regular))); + not1(::IceInternal::constMemFun(&Endpoint::regular))); break; } @@ -546,14 +546,15 @@ IceDelegateM::Ice::Object::setup(const ReferencePtr& reference) case Reference::ModeBatchDatagram: { remove_copy_if(_reference->endpoints.begin(), _reference->endpoints.end(), back_inserter(endpoints), - not1(constMemFun(&Endpoint::datagram))); + not1(::IceInternal::constMemFun(&Endpoint::datagram))); break; } } if (_reference->secure) { - endpoints.erase(remove_if(endpoints.begin(), endpoints.end(), not1(constMemFun(&Endpoint::secure))), + endpoints.erase(remove_if(endpoints.begin(), endpoints.end(), + not1(::IceInternal::constMemFun(&Endpoint::secure))), endpoints.end()); } |