00001 /****************************************************************************** 00002 * swlog.h - definition of class SWLog used for logging messages 00003 * 00004 * $Id: swlog_8h-source.html,v 1.7 2002/06/20 20:23:10 mgruner Exp $ 00005 * 00006 * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org) 00007 * CrossWire Bible Society 00008 * P. O. Box 2528 00009 * Tempe, AZ 85280-2528 00010 * 00011 * This program is free software; you can redistribute it and/or modify it 00012 * under the terms of the GNU General Public License as published by the 00013 * Free Software Foundation version 2. 00014 * 00015 * This program is distributed in the hope that it will be useful, but 00016 * WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * General Public License for more details. 00019 * 00020 */ 00021 00022 //--------------------------------------------------------------------------- 00023 #ifndef swlogH 00024 #define swlogH 00025 //--------------------------------------------------------------------------- 00026 00027 #include <defs.h> 00028 00029 class SWDLLEXPORT SWLog 00030 { 00031 public: 00032 static SWLog *systemlog; 00033 00034 bool log; 00035 SWLog () 00036 { 00037 log = true; 00038 } 00039 virtual void LogWarning (char *fmt, ...); 00040 virtual void LogError (char *fmt, ...); 00041 virtual void LogTimedInformation (char *fmt, ...); 00042 virtual void LogInformation (char *fmt, ...); 00043 }; 00044 00045 00046 #endif