// ********************************************************************** // // Copyright (c) 2001 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_COLLECTOR_F_H #define ICE_COLLECTOR_F_H #include namespace IceInternal { class Collector; void incRef(Collector*); void decRef(Collector*); typedef IceInternal::Handle CollectorPtr; class CollectorFactory; void incRef(CollectorFactory*); void decRef(CollectorFactory*); typedef IceInternal::Handle CollectorFactoryPtr; } #endif