diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 13:08:23 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-07-06 13:08:23 +0000 |
commit | 3030ac8c355435c4426c82019669c476f5c76088 (patch) | |
tree | c57f7c0a983c44847f93285f0676df49f21707b9 /cppe/src/IceE/LocalObject.cpp | |
parent | Use direct proxy for process object instead of indirect proxy (diff) | |
download | ice-3030ac8c355435c4426c82019669c476f5c76088.tar.bz2 ice-3030ac8c355435c4426c82019669c476f5c76088.tar.xz ice-3030ac8c355435c4426c82019669c476f5c76088.zip |
Renamed namespace back to Ice
Diffstat (limited to 'cppe/src/IceE/LocalObject.cpp')
-rw-r--r-- | cppe/src/IceE/LocalObject.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cppe/src/IceE/LocalObject.cpp b/cppe/src/IceE/LocalObject.cpp index caa268678aa..a8316be312d 100644 --- a/cppe/src/IceE/LocalObject.cpp +++ b/cppe/src/IceE/LocalObject.cpp @@ -10,32 +10,32 @@ #include <IceE/LocalObject.h> using namespace std; -using namespace IceE; -using namespace IceEInternal; +using namespace Ice; +using namespace IceInternal; -void IceEInternal::incRef(LocalObject* p) { p->__incRef(); } -void IceEInternal::decRef(LocalObject* p) { p->__decRef(); } +void IceInternal::incRef(LocalObject* p) { p->__incRef(); } +void IceInternal::decRef(LocalObject* p) { p->__decRef(); } bool -IceE::LocalObject::operator==(const LocalObject& r) const +Ice::LocalObject::operator==(const LocalObject& r) const { return this == &r; } bool -IceE::LocalObject::operator!=(const LocalObject& r) const +Ice::LocalObject::operator!=(const LocalObject& r) const { return this != &r; } bool -IceE::LocalObject::operator<(const LocalObject& r) const +Ice::LocalObject::operator<(const LocalObject& r) const { return this < &r; } Int -IceE::LocalObject::ice_hash() const +Ice::LocalObject::ice_hash() const { return static_cast<Int>(reinterpret_cast<Long>(this) >> 4); } |