// ********************************************************************** // // Copyright (c) 2001 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_OBJECT_F_H #define ICE_OBJECT_F_H #include namespace Ice { class Object; } namespace IceInternal { void ICE_API incRef(::Ice::Object*); void ICE_API decRef(::Ice::Object*); } namespace Ice { typedef IceInternal::Handle< Object > ObjectPtr; } #endif