// ********************************************************************** // // Copyright (c) 2003-2016 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_ENDPOINT_I_F_H #define ICE_ENDPOINT_I_F_H #include #include namespace IceInternal { class EndpointI; ICE_API IceUtil::Shared* upCast(EndpointI*); typedef Handle EndpointIPtr; class TcpEndpointI; ICE_API IceUtil::Shared* upCast(TcpEndpointI*); typedef Handle TcpEndpointIPtr; class UdpEndpointI; ICE_API IceUtil::Shared* upCast(UdpEndpointI*); typedef Handle UdpEndpointIPtr; class WSEndpoint; ICE_API IceUtil::Shared* upCast(WSEndpoint*); typedef Handle WSEndpointPtr; class EndpointI_connectors; ICE_API IceUtil::Shared* upCast(EndpointI_connectors*); typedef Handle EndpointI_connectorsPtr; } #endif