summaryrefslogtreecommitdiff
path: root/src/net/attendancehandler.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-04-17 22:48:38 +0300
committerAndrei Karas <akaras@inbox.ru>2018-04-17 22:48:38 +0300
commita35ac2e4f9e05b379d8520db0e5bd90ad56093df (patch)
treebe8c8d4a454a908153d53c472006b2d4dc1a454a /src/net/attendancehandler.h
parentba24c11260983da339bbc362a25ff5b3b54a2445 (diff)
downloadManaVerse-a35ac2e4f9e05b379d8520db0e5bd90ad56093df.tar.gz
ManaVerse-a35ac2e4f9e05b379d8520db0e5bd90ad56093df.tar.bz2
ManaVerse-a35ac2e4f9e05b379d8520db0e5bd90ad56093df.tar.xz
ManaVerse-a35ac2e4f9e05b379d8520db0e5bd90ad56093df.zip
Add empty attendance handler.
Diffstat (limited to 'src/net/attendancehandler.h')
-rw-r--r--src/net/attendancehandler.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/src/net/attendancehandler.h b/src/net/attendancehandler.h
new file mode 100644
index 000000000..8f956eca2
--- /dev/null
+++ b/src/net/attendancehandler.h
@@ -0,0 +1,45 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-2018 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_ATTENDANCEHANDLER_H
+#define NET_ATTENDANCEHANDLER_H
+
+#include "localconsts.h"
+
+namespace Net
+{
+
+class AttendanceHandler notfinal
+{
+ public:
+ AttendanceHandler()
+ { }
+
+ A_DELETE_COPY(AttendanceHandler)
+
+ virtual ~AttendanceHandler()
+ { }
+};
+
+} // namespace Net
+
+extern Net::AttendanceHandler *attendanceHandler;
+
+#endif // NET_ATTENDANCEHANDLER_H