00001 /* ScummVM - Graphic Adventure Engine00002 *00003 * ScummVM is the legal property of its developers, whose names00004 * are too numerous to list here. Please refer to the COPYRIGHT00005 * file distributed with this source distribution.00006 *00007 * This program is free software; you can redistribute it and/or00008 * modify it under the terms of the GNU General Public License00009 * as published by the Free Software Foundation; either version 200010 * of the License, or (at your option) any later version.00011 *00012 * This program is distributed in the hope that it will be useful,00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the00015 * GNU General Public License for more details.00016 *00017 * You should have received a copy of the GNU General Public License00018 * along with this program; if not, write to the Free Software00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.00020 *00021 */00022
00023 #ifndef BACKENDS_LOG_LOG_H00024 #define BACKENDS_LOG_LOG_H00025
00026 #include "common/scummsys.h"00027
00028 class OSystem;
00029
00030 namespace Common {
00031 class WriteStream;
00032 } // End of namespace Common00033
00034 namespace Backends {
00035 namespace Log {
00036
00042class Log {
00043 public:
00049 Log(OSystem *system);
00050~Log() { close(); }
00051
00074 voidopen(Common::WriteStream *stream);
00075
00083 voidclose();
00084
00102 voidprint(constchar *message, constbool printTimeOnNewline = true);
00103 private:
00107 voidprintTimeStamp();
00108
00112OSystem *_system;
00113
00117Common::WriteStream *_stream;
00118
00122bool_startOfLine;
00123 };
00124
00125 } // End of namespace Log00126 } // End of namespace Backends00127
00128 #endif
Generated on Sat Dec 14 2019 05:00:27 for ResidualVM by 1.7.1