// ********************************************************************** // // Copyright (c) 2002 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_TRACE_LEVELS_H #define ICE_TRACE_LEVELS_H #include #include #include namespace IceInternal { class TraceLevels : public ::IceUtil::Shared { public: TraceLevels(const ::Ice::PropertiesPtr&); virtual ~TraceLevels(); const int network; const char* networkCat; const int protocol; const char* protocolCat; const int retry; const char* retryCat; }; } #endif