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