diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2007-04-02 16:22:11 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2007-04-02 16:22:11 +0000 |
commit | 5095d3c67c99544db697d27ddd4d3f2cf500902b (patch) | |
tree | e2bf589c54a1a7aa4339d9b51c3d1ca81fcb7b8c /cppe/src/IceE/LocalObject.cpp | |
parent | emove local interface support (diff) | |
download | ice-5095d3c67c99544db697d27ddd4d3f2cf500902b.tar.bz2 ice-5095d3c67c99544db697d27ddd4d3f2cf500902b.tar.xz ice-5095d3c67c99544db697d27ddd4d3f2cf500902b.zip |
Remove local interface support
Diffstat (limited to 'cppe/src/IceE/LocalObject.cpp')
-rw-r--r-- | cppe/src/IceE/LocalObject.cpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/cppe/src/IceE/LocalObject.cpp b/cppe/src/IceE/LocalObject.cpp deleted file mode 100644 index 3b7af3c0b8e..00000000000 --- a/cppe/src/IceE/LocalObject.cpp +++ /dev/null @@ -1,34 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved. -// -// This copy of Ice-E is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#include <IceE/LocalObject.h> - -using namespace std; -using namespace Ice; -using namespace IceInternal; - -IceUtil::Shared* IceInternal::upCast(LocalObject* p) { return p; } - -bool -Ice::LocalObject::operator==(const LocalObject& r) const -{ - return this == &r; -} - -bool -Ice::LocalObject::operator<(const LocalObject& r) const -{ - return this < &r; -} - -Int -Ice::LocalObject::ice_hash() const -{ - return static_cast<Int>(reinterpret_cast<Long>(this) >> 4); -} |