// // Copyright (c) ZeroC, Inc. All rights reserved. // #ifndef ICE_CONNECTION_FACTORY_F_H #define ICE_CONNECTION_FACTORY_F_H #include #include namespace IceInternal { class OutgoingConnectionFactory; IceUtil::Shared* upCast(OutgoingConnectionFactory*); typedef IceInternal::Handle OutgoingConnectionFactoryPtr; class IncomingConnectionFactory; #ifdef ICE_CPP11_MAPPING using IncomingConnectionFactoryPtr = ::std::shared_ptr; #else IceUtil::Shared* upCast(IncomingConnectionFactory*); typedef IceInternal::Handle IncomingConnectionFactoryPtr; #endif } #endif