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