// ********************************************************************** // // 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_REFERENCE_F_H #define ICE_REFERENCE_F_H #include namespace IceInternal { class Reference; ICE_API void incRef(Reference*); ICE_API void decRef(Reference*); typedef IceInternal::Handle ReferencePtr; class FixedReference; ICE_API void incRef(FixedReference*); ICE_API void decRef(FixedReference*); typedef IceInternal::Handle FixedReferencePtr; class RoutableReference; ICE_API void incRef(RoutableReference*); ICE_API void decRef(RoutableReference*); typedef IceInternal::Handle RoutableReferencePtr; class DirectReference; ICE_API void incRef(DirectReference*); ICE_API void decRef(DirectReference*); typedef IceInternal::Handle DirectReferencePtr; class IndirectReference; ICE_API void incRef(IndirectReference*); ICE_API void decRef(IndirectReference*); typedef IceInternal::Handle IndirectReferencePtr; } #endif