summaryrefslogtreecommitdiff
path: root/src/input/keysortfunctor.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-05-18 16:59:40 +0300
committerAndrei Karas <akaras@inbox.ru>2014-05-18 16:59:40 +0300
commit8b94ceca60560fd06f60359492c47684eda57e5c (patch)
treede92ac00a989f124133a470c7f2542fcfd76ac8e /src/input/keysortfunctor.h
parent4c5c512dcc2a561172a09cc9962ab6f597c9058c (diff)
downloadplus-8b94ceca60560fd06f60359492c47684eda57e5c.tar.gz
plus-8b94ceca60560fd06f60359492c47684eda57e5c.tar.bz2
plus-8b94ceca60560fd06f60359492c47684eda57e5c.tar.xz
plus-8b94ceca60560fd06f60359492c47684eda57e5c.zip
Move keysortfunctor into separate file.
Diffstat (limited to 'src/input/keysortfunctor.h')
-rw-r--r--src/input/keysortfunctor.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/input/keysortfunctor.h b/src/input/keysortfunctor.h
new file mode 100644
index 000000000..fae1bedda
--- /dev/null
+++ b/src/input/keysortfunctor.h
@@ -0,0 +1,39 @@
+/*
+ * The ManaPlus Client
+ * Copyright (C) 2012-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 INPUT_KEYSORTFUNCTOR_H
+#define INPUT_KEYSORTFUNCTOR_H
+
+#include "input/keydata.h"
+
+#include "localconsts.h"
+
+class KeySortFunctor final
+{
+ public:
+ bool operator() (const int key1, const int key2) const
+ {
+ return keys[key1].priority >= keys[key2].priority;
+ }
+
+ const KeyData *keys;
+};
+
+#endif // INPUT_KEYSORTFUNCTOR_H