X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Ffilelogger.h;h=fba103dd67d160b1df5c66c5f5a3ee5e20b3e02c;hb=80c09792394a213f19d1384e61fdf8dfc3fce49a;hp=3100761d9a22901c2ebc94ae6e98c30d684bf616;hpb=4965a1d6697565b1a72de31deaccfd93180bd403;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/filelogger.h b/include/filelogger.h index 3100761d9..fba103dd6 100644 --- a/include/filelogger.h +++ b/include/filelogger.h @@ -2,8 +2,8 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd: (C) 2002-2008 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * InspIRCd: (C) 2002-2009 InspIRCd Development Team + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -31,12 +31,14 @@ enum DebugLevel /* Forward declaration -- required */ class InspIRCd; +/** A logging class which logs to a streamed file. + */ class CoreExport FileLogStream : public LogStream { private: FileWriter *f; public: - FileLogStream(InspIRCd *Instance, int loglevel, FileWriter *fw); + FileLogStream(int loglevel, FileWriter *fw); virtual ~FileLogStream(); @@ -44,3 +46,4 @@ class CoreExport FileLogStream : public LogStream }; #endif +