aboutsummaryrefslogtreecommitdiff
path: root/src/game/IRCLog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/IRCLog.h')
-rw-r--r--src/game/IRCLog.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/game/IRCLog.h b/src/game/IRCLog.h
deleted file mode 100644
index fd35a0aaa79..00000000000
--- a/src/game/IRCLog.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef _IRC_LOG_H
-#define _IRC_LOG_H
-
-#include "Common.h"
-#include <fstream>
-
-class IRCLog
-{
- public:
- IRCLog();
- ~IRCLog();
-
- public:
- void WriteLog(const char *what, ...);
- std::string GetLogDateStr() const;
- std::string GetLogDateTimeStr() const;
- private:
- std::ofstream ircLogfile;
-};
-
-
-#endif