summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-22 00:00:47 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-22 00:00:47 +0300
commitaa85f15df21e65b42c62bcad25a331b944bf270f (patch)
tree5e9fa0feae1015f30b64f291512177ab51be9d75 /src
parent627c2f82089fcd14f5f6be387af30818d03e59a5 (diff)
downloadplus-aa85f15df21e65b42c62bcad25a331b944bf270f.tar.gz
plus-aa85f15df21e65b42c62bcad25a331b944bf270f.tar.bz2
plus-aa85f15df21e65b42c62bcad25a331b944bf270f.tar.xz
plus-aa85f15df21e65b42c62bcad25a331b944bf270f.zip
Move actionfuncptr into separate file.
Diffstat (limited to 'src')
-rw-r--r--src/actions/actionfuncptr.h28
-rw-r--r--src/input/inputactiondata.h4
2 files changed, 29 insertions, 3 deletions
diff --git a/src/actions/actionfuncptr.h b/src/actions/actionfuncptr.h
new file mode 100644
index 000000000..18aff42c7
--- /dev/null
+++ b/src/actions/actionfuncptr.h
@@ -0,0 +1,28 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2011-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 ACTIONS_ACTIONFUNCPTR_H
+#define ACTIONS_ACTIONFUNCPTR_H
+
+#include "events/inputevent.h"
+
+typedef bool (*ActionFuncPtr) (InputEvent &event);
+
+#endif // ACTIONS_ACTIONFUNCPTR_H
diff --git a/src/input/inputactiondata.h b/src/input/inputactiondata.h
index aefa6fc86..a9abd727e 100644
--- a/src/input/inputactiondata.h
+++ b/src/input/inputactiondata.h
@@ -23,12 +23,10 @@
#ifndef INPUT_INPUTACTIONDATA_H
#define INPUT_INPUTACTIONDATA_H
-#include "events/inputevent.h"
+#include "actions/actionfuncptr.h"
#include <string>
-typedef bool (*ActionFuncPtr) (InputEvent &event);
-
struct InputActionData final
{
const char *configField;