// ********************************************************************** // // Copyright (c) 2001 // MutableRealms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_SYS_LOGGER_I_H #define ICE_SYS_LOGGER_I_H #include namespace Ice { class SysLoggerI : public Logger, public JTCMutex { public: virtual void trace(const std::string&, const std::string&); virtual void warning(const std::string&); virtual void error(const std::string&); virtual void destroy(); }; } #endif