summaryrefslogtreecommitdiff
path: root/src/net/mail2handler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-08-10 23:53:20 +0300
committerAndrei Karas <akaras@inbox.ru>2017-08-10 23:53:20 +0300
commita12b573538c7816ba3f79cc0c67fc98614e1fdc2 (patch)
treefca2b3b2315164b73416955241fea5507c106659 /src/net/mail2handler.h
parent051d2ee3bc0ec387acde86081d999b1c90a7806f (diff)
downloadplus-a12b573538c7816ba3f79cc0c67fc98614e1fdc2.tar.gz
plus-a12b573538c7816ba3f79cc0c67fc98614e1fdc2.tar.bz2
plus-a12b573538c7816ba3f79cc0c67fc98614e1fdc2.tar.xz
plus-a12b573538c7816ba3f79cc0c67fc98614e1fdc2.zip
Add empty mail2handler.
Diffstat (limited to 'src/net/mail2handler.h')
-rw-r--r--src/net/mail2handler.h47
1 files changed, 47 insertions, 0 deletions
diff --git a/src/net/mail2handler.h b/src/net/mail2handler.h
new file mode 100644
index 000000000..41fc17d57
--- /dev/null
+++ b/src/net/mail2handler.h
@@ -0,0 +1,47 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2017 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/>.
+ */
+
+#ifndef NET_MAIL2HANDLER_H
+#define NET_MAIL2HANDLER_H
+
+#include <string>
+
+#include "localconsts.h"
+
+namespace Net
+{
+
+class Mail2Handler notfinal
+{
+ public:
+ Mail2Handler()
+ { }
+
+ A_DELETE_COPY(Mail2Handler)
+
+ virtual ~Mail2Handler()
+ { }
+};
+
+} // namespace Net
+
+extern Net::Mail2Handler *mail2Handler;
+
+#endif // NET_MAIL2HANDLER_H