summaryrefslogtreecommitdiff
path: root/src/listeners/updatestatuslistener.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-04-27 19:37:59 +0300
committerAndrei Karas <akaras@inbox.ru>2014-04-27 19:37:59 +0300
commit03418ce78766b062ce5af7aaf99f7f2c62152b6b (patch)
treeeb0127126e8d9506ca4aeee639c896bc561fa6ca /src/listeners/updatestatuslistener.h
parentc77f06f7b80a67c842abe837beb2f22e9ecf60cc (diff)
downloadplus-03418ce78766b062ce5af7aaf99f7f2c62152b6b.tar.gz
plus-03418ce78766b062ce5af7aaf99f7f2c62152b6b.tar.bz2
plus-03418ce78766b062ce5af7aaf99f7f2c62152b6b.tar.xz
plus-03418ce78766b062ce5af7aaf99f7f2c62152b6b.zip
Add UpdateStatusListener.
Diffstat (limited to 'src/listeners/updatestatuslistener.h')
-rw-r--r--src/listeners/updatestatuslistener.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/listeners/updatestatuslistener.h b/src/listeners/updatestatuslistener.h
new file mode 100644
index 000000000..8671687c6
--- /dev/null
+++ b/src/listeners/updatestatuslistener.h
@@ -0,0 +1,38 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 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/>.
+ */
+
+#ifndef LISTENERS_UPDATESTATUSLISTENER_H
+#define LISTENERS_UPDATESTATUSLISTENER_H
+
+#include "listeners/baselistener.hpp"
+
+#include "localconsts.h"
+
+class UpdateStatusListener
+{
+ public:
+ virtual void updateStatus() = 0;
+
+ static void distributeEvent();
+
+ defineListenerHeader(UpdateStatusListener)
+};
+
+#endif // LISTENERS_UPDATESTATUSLISTENER_H