From: brain Date: Sat, 19 Aug 2006 00:51:13 +0000 (+0000) Subject: Make it virtual, in case someone ever wants to make a derived version of it X-Git-Tag: v2.0.23~7335 X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=8cd26c0ff3ce079e1c8f6dbb8f0567706abc6284;p=user%2Fhenk%2Fcode%2Finspircd.git Make it virtual, in case someone ever wants to make a derived version of it git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4986 e03df62e-2008-0410-955e-edbf42e46eb7 --- diff --git a/include/inspircd.h b/include/inspircd.h index 4783b2dc1..c4a58e90e 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -165,14 +165,14 @@ class FileLogger : public EventHandler FileLogger(InspIRCd* Instance, FILE* logfile); /** This returns false, logfiles are writeable. */ - bool Readable(); + virtual bool Readable(); /** Handle pending write events. * This will flush any waiting data to disk. * If any data remains after the fprintf call, * another write event is scheduled to write * the rest of the data when possible. */ - void HandleEvent(EventType et); + virtual void HandleEvent(EventType et); /** Write one or more preformatted log lines. * If the data cannot be written immediately, * this class will insert itself into the @@ -183,11 +183,11 @@ class FileLogger : public EventHandler void WriteLogLine(const std::string &line); /** Close the log file and cancel any events. */ - void Close(); + virtual void Close(); /** Close the log file and cancel any events. * (indirectly call Close() */ - ~FileLogger(); + virtual ~FileLogger(); }; class XLineManager;