// ********************************************************************** // // Copyright (c) 2001 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_LOCAL_OBJECT_H #define ICE_LOCAL_OBJECT_H #include #include #include namespace IceInternal { class BasicStream; } namespace Ice { class ICE_API LocalObject : virtual public ::IceUtil::Shared { public: virtual bool operator==(const LocalObject&) const; virtual bool operator!=(const LocalObject&) const; virtual bool operator<(const LocalObject&) const; virtual ::Ice::Int ice_hash() const; }; } #endif