diff options
Diffstat (limited to 'cpp/src/Ice/TransportInfoI.h')
-rw-r--r-- | cpp/src/Ice/TransportInfoI.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/cpp/src/Ice/TransportInfoI.h b/cpp/src/Ice/TransportInfoI.h deleted file mode 100644 index 34c66515dd0..00000000000 --- a/cpp/src/Ice/TransportInfoI.h +++ /dev/null @@ -1,40 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#ifndef ICE_TRANSPORT_INFO_I_H -#define ICE_TRANSPORT_INFO_I_H - -#include <IceUtil/Mutex.h> -#include <Ice/ConnectionIF.h> -#include <Ice/ReferenceF.h> -#include <Ice/TransportInfo.h> - -namespace Ice -{ - -class ICE_PROTOCOL_API TransportInfoI : public TransportInfo -{ -public: - - virtual void flushBatchRequests(); - virtual ObjectPrx createProxy(const Identity& ident) const; - -private: - - // This method is for IceInternal::Connection only. - friend class ConnectionI; - void setConnection(const ConnectionIPtr&); - - ConnectionIPtr _connection; - IceUtil::Mutex _connectionMutex; -}; - -} - -#endif |