// ********************************************************************** // // Copyright (c) 2003-2007 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_REFERENCE_F_H #define ICE_REFERENCE_F_H #include #include namespace IceInternal { class Reference; ICE_API IceUtil::Shared* upCast(Reference*); typedef IceInternal::Handle ReferencePtr; class FixedReference; ICE_API IceUtil::Shared* upCast(FixedReference*); typedef IceInternal::Handle FixedReferencePtr; class RoutableReference; ICE_API IceUtil::Shared* upCast(RoutableReference*); typedef IceInternal::Handle RoutableReferencePtr; class DirectReference; ICE_API IceUtil::Shared* upCast(DirectReference*); typedef IceInternal::Handle DirectReferencePtr; class IndirectReference; ICE_API IceUtil::Shared* upCast(IndirectReference*); typedef IceInternal::Handle IndirectReferencePtr; } #endif