diff options
Diffstat (limited to 'cppe/include/IceE/ObjectAdapterF.h')
-rw-r--r-- | cppe/include/IceE/ObjectAdapterF.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/cppe/include/IceE/ObjectAdapterF.h b/cppe/include/IceE/ObjectAdapterF.h deleted file mode 100644 index ed4ea70b395..00000000000 --- a/cppe/include/IceE/ObjectAdapterF.h +++ /dev/null @@ -1,45 +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. -// -// ********************************************************************** - -#ifndef ICEE_OBJECT_ADAPTER_F_H -#define ICEE_OBJECT_ADAPTER_F_H - -#include <IceE/Handle.h> -#include <IceE/Shared.h> - -namespace Ice -{ - -class ObjectAdapter; -inline bool operator==(const ObjectAdapter& l, const ObjectAdapter& r) -{ - return &l == &r; -} -inline bool operator<(const ObjectAdapter& l, const ObjectAdapter& r) -{ - return &l < &r; -} - -} - -namespace IceInternal -{ - -ICE_API IceUtil::Shared* upCast(::Ice::ObjectAdapter*); - -} - -namespace Ice -{ - -typedef ::IceInternal::Handle< ::Ice::ObjectAdapter> ObjectAdapterPtr; - -} - -#endif |