From fa5abf73fee733bda9c99005c447205df2299e14 Mon Sep 17 00:00:00 2001 From: danieldg Date: Tue, 20 Oct 2009 04:40:18 +0000 Subject: Get rid of more unneeded parent classes git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11930 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/logger.h | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'include/logger.h') diff --git a/include/logger.h b/include/logger.h index e3b7ee0a5..f0cbe14d3 100644 --- a/include/logger.h +++ b/include/logger.h @@ -26,7 +26,7 @@ * I/O (linux seems to, as does freebsd) this will default to * blocking behaviour. */ -class CoreExport FileWriter : public EventHandler +class CoreExport FileWriter { protected: /** The log file (fd is inside this somewhere, @@ -43,14 +43,6 @@ class CoreExport FileWriter : public EventHandler */ FileWriter(FILE* logfile); - /** 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. - */ - virtual void HandleEvent(EventType et, int errornum = 0); - /** Write one or more preformatted log lines. * If the data cannot be written immediately, * this class will insert itself into the @@ -60,10 +52,6 @@ class CoreExport FileWriter : public EventHandler */ void WriteLogLine(const std::string &line); - /** Close the log file and cancel any events. - */ - virtual void Close(); - /** Close the log file and cancel any events. */ virtual ~FileWriter(); -- cgit v1.2.3