summaryrefslogtreecommitdiff
path: root/src/listeners/debugmessagelistener.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-03-09 20:13:00 +0300
committerAndrei Karas <akaras@inbox.ru>2015-03-09 20:13:00 +0300
commit50a5ff8c29c9df133104d9113debafbc5424d0ab (patch)
treee450a27dd1b7e8ec7723373fe9d6b3de24e40523 /src/listeners/debugmessagelistener.cpp
parent90b82c6a9f983b90d5bb5b30f397ce977df778a5 (diff)
downloadplus-50a5ff8c29c9df133104d9113debafbc5424d0ab.tar.gz
plus-50a5ff8c29c9df133104d9113debafbc5424d0ab.tar.bz2
plus-50a5ff8c29c9df133104d9113debafbc5424d0ab.tar.xz
plus-50a5ff8c29c9df133104d9113debafbc5424d0ab.zip
Add debug message listener.
Diffstat (limited to 'src/listeners/debugmessagelistener.cpp')
-rw-r--r--src/listeners/debugmessagelistener.cpp36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/listeners/debugmessagelistener.cpp b/src/listeners/debugmessagelistener.cpp
new file mode 100644
index 000000000..32fdb142b
--- /dev/null
+++ b/src/listeners/debugmessagelistener.cpp
@@ -0,0 +1,36 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2014-2015 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 "listeners/debugmessagelistener.h"
+
+#include "debug.h"
+
+defineListener(DebugMessageListener)
+
+void DebugMessageListener::distributeEvent(const std::string &msg)
+{
+ FOR_EACH (std::vector<DebugMessageListener*>::iterator,
+ it, mListeners)
+ {
+ DebugMessageListener *const listener = *it;
+ if (listener)
+ listener->debugMessage(msg);
+ }
+}