diff options
Diffstat (limited to 'cppe/include/IceE/ConnectionF.h')
-rw-r--r-- | cppe/include/IceE/ConnectionF.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/cppe/include/IceE/ConnectionF.h b/cppe/include/IceE/ConnectionF.h deleted file mode 100644 index 5749cd9c944..00000000000 --- a/cppe/include/IceE/ConnectionF.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_CONNECTION_F_H -#define ICEE_CONNECTION_F_H - -#include <IceE/Handle.h> -#include <IceE/Shared.h> - -namespace Ice -{ - -class Connection; -inline bool operator==(const Connection& l, const Connection& r) -{ - return &l == &r; -} -inline bool operator<(const Connection& l, const Connection& r) -{ - return &l < &r; -} - -} - -namespace IceInternal -{ - -ICE_API IceUtil::Shared* upCast(::Ice::Connection*); - -} - -namespace Ice -{ - -typedef ::IceInternal::Handle< ::Ice::Connection> ConnectionPtr; - -} - -#endif |