diff options
author | Seline <none@none> | 2008-10-14 11:57:03 -0500 |
---|---|---|
committer | Seline <none@none> | 2008-10-14 11:57:03 -0500 |
commit | 2265aef916e3b2d63d87faa68a2b51e7d747c54c (patch) | |
tree | b05420685b7d202aade6f70a6f511adbfb79e37f /src/game/IRCLog.h | |
parent | 222cbfd4644412fb8e5aeed7c37c88797d09964a (diff) |
[svn] * Merge Temp dev SVN with Assembla.
* Changes include:
- Implementation of w12x's Outdoor PvP and Game Event Systems.
- Temporary removal of IRC Chat Bot (until infinite loop when disabled is fixed).
- All mangos -> trinity (to convert your mangos_string table, please run mangos_string_to_trinity_string.sql).
- Improved Config cleanup.
- And many more changes.
--HG--
branch : trunk
Diffstat (limited to 'src/game/IRCLog.h')
-rw-r--r-- | src/game/IRCLog.h | 22 |
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
|