summaryrefslogtreecommitdiff
path: root/src/net/eathena/mailhandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-09-10 16:04:21 +0300
committerAndrei Karas <akaras@inbox.ru>2014-09-10 16:04:21 +0300
commit24e4e3c241f39c088bd6f9eb471a2c0285c4eebf (patch)
tree793f59481dfd77af416bc003dac5f15f084ef227 /src/net/eathena/mailhandler.cpp
parent648b7bf6803ecb250fd095f60ed52c0ac75d0201 (diff)
downloadplus-24e4e3c241f39c088bd6f9eb471a2c0285c4eebf.tar.gz
plus-24e4e3c241f39c088bd6f9eb471a2c0285c4eebf.tar.bz2
plus-24e4e3c241f39c088bd6f9eb471a2c0285c4eebf.tar.xz
plus-24e4e3c241f39c088bd6f9eb471a2c0285c4eebf.zip
Add mailhandler for now empty.
Diffstat (limited to 'src/net/eathena/mailhandler.cpp')
-rw-r--r--src/net/eathena/mailhandler.cpp48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/net/eathena/mailhandler.cpp b/src/net/eathena/mailhandler.cpp
new file mode 100644
index 000000000..32080b529
--- /dev/null
+++ b/src/net/eathena/mailhandler.cpp
@@ -0,0 +1,48 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2014 The ManaPlus Developers
+ *
+ * This file is part of The ManaPlus Client.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "net/eathena/mailhandler.h"
+
+#include "net/eathena/messageout.h"
+#include "net/eathena/protocol.h"
+
+#include "debug.h"
+
+extern Net::MailHandler *mailHandler;
+
+namespace EAthena
+{
+
+MailHandler::MailHandler() :
+ MessageHandler()
+{
+ static const uint16_t _messages[] =
+ {
+ 0
+ };
+ handledMessages = _messages;
+ mailHandler = this;
+}
+
+void MailHandler::handleMessage(Net::MessageIn &msg)
+{
+}
+
+} // namespace EAthena