summaryrefslogtreecommitdiff
path: root/src/eventlistener.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-04-09 00:25:41 +0200
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2011-04-09 17:54:13 +0200
commit72d83cf5ae523f16fd5313c20f711f6030350d05 (patch)
tree11e737b42871df8c8be5c819dd29613dade27938 /src/eventlistener.h
parent404d3f7f2f9aa455bea423a6a00025df23cd6687 (diff)
downloadmana-client-72d83cf5ae523f16fd5313c20f711f6030350d05.tar.gz
mana-client-72d83cf5ae523f16fd5313c20f711f6030350d05.tar.bz2
mana-client-72d83cf5ae523f16fd5313c20f711f6030350d05.tar.xz
mana-client-72d83cf5ae523f16fd5313c20f711f6030350d05.zip
Renamed Listener to EventListener
Makes it clear what kind of listener it is, since there are other listener classes as well. Acked-by: Jared Adams
Diffstat (limited to 'src/eventlistener.h')
-rw-r--r--src/eventlistener.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/eventlistener.h b/src/eventlistener.h
new file mode 100644
index 00000000..0d998829
--- /dev/null
+++ b/src/eventlistener.h
@@ -0,0 +1,40 @@
+/*
+ * The Mana Client
+ * Copyright (C) 2010 The Mana Developers
+ *
+ * This file is part of The Mana 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 EVENTLISTENER_H
+#define EVENTLISTENER_H
+
+#include "event.h"
+
+#include <string>
+
+class EventListener
+{
+public:
+ virtual ~EventListener();
+
+ void listen(Event::Channel channel);
+
+ void ignore(Event::Channel channel);
+
+ virtual void event(Event::Channel channel, const Event &event) = 0;
+};
+
+#endif // EVENTLISTENER_H