summaryrefslogtreecommitdiffstats
path: root/src/Core/LogManager.h
diff options
context:
space:
mode:
authorMatthias Schiffer <matthias@gamezock.de>2009-08-03 18:39:29 +0200
committerMatthias Schiffer <matthias@gamezock.de>2009-08-03 18:39:29 +0200
commitd74e5245a29c700cc788f94bcadf4ab62bb606cc (patch)
tree1d72120f09a7db326d1e4045ef515df3bda895bb /src/Core/LogManager.h
parentfdd7fbae926821be7d5229d5cba04396e6f00f99 (diff)
downloadmad-d74e5245a29c700cc788f94bcadf4ab62bb606cc.tar
mad-d74e5245a29c700cc788f94bcadf4ab62bb606cc.zip
_UNUSED_PARAMETER_ entfernt
Namen unbenutzte Parameter auskommentieren
Diffstat (limited to 'src/Core/LogManager.h')
-rw-r--r--src/Core/LogManager.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/Core/LogManager.h b/src/Core/LogManager.h
index 7d3b434..d3233f0 100644
--- a/src/Core/LogManager.h
+++ b/src/Core/LogManager.h
@@ -20,8 +20,6 @@
#ifndef MAD_CORE_LOGMANAGER_H_
#define MAD_CORE_LOGMANAGER_H_
-#include <config.h>
-
#include "Configurable.h"
#include "Logger.h"
#include "RemoteLogger.h"
@@ -68,13 +66,13 @@ class LogManager : public Configurable {
boost::mutex cerrLock;
protected:
- virtual void logMessage(MessageCategory category _UNUSED_PARAMETER_, MessageLevel level, time_t timestamp _UNUSED_PARAMETER_, const std::string &message);
- virtual void logMessage(MessageCategory category _UNUSED_PARAMETER_, MessageLevel, time_t timestamp _UNUSED_PARAMETER_, const std::string &message, const std::string &messageSource);
+ virtual void logMessage(MessageCategory category, MessageLevel level, time_t timestamp, const std::string &message);
+ virtual void logMessage(MessageCategory category, MessageLevel, time_t timestamp, const std::string &message, const std::string &messageSource);
public:
ConsoleLogger() {}
- void logMessageDirect(MessageCategory category _UNUSED_PARAMETER_, MessageLevel level _UNUSED_PARAMETER_, time_t timestamp _UNUSED_PARAMETER_, const std::string &message);
+ void logMessageDirect(MessageCategory category, MessageLevel level, time_t timestamp, const std::string &message);
};