summaryrefslogtreecommitdiff
path: root/src/input/keysortfunctor.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-07-17 22:17:32 +0300
committerAndrei Karas <akaras@inbox.ru>2014-07-17 22:17:32 +0300
commitb55357c4bffafa629453abdfd6bb411d89ec5f25 (patch)
tree6fe805fb0f009e3a1756bbc3fc9a01cdaf50210f /src/input/keysortfunctor.h
parenta01c8632961792ba92a5c0bda8308d1260444b41 (diff)
downloadmanaverse-b55357c4bffafa629453abdfd6bb411d89ec5f25.tar.gz
manaverse-b55357c4bffafa629453abdfd6bb411d89ec5f25.tar.bz2
manaverse-b55357c4bffafa629453abdfd6bb411d89ec5f25.tar.xz
manaverse-b55357c4bffafa629453abdfd6bb411d89ec5f25.zip
Rename KeySortFunctor into InputActionSortFunctor.
Diffstat (limited to 'src/input/keysortfunctor.h')
-rw-r--r--src/input/keysortfunctor.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/input/keysortfunctor.h b/src/input/keysortfunctor.h
deleted file mode 100644
index fedb4c395..000000000
--- a/src/input/keysortfunctor.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * 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/inputactiondata.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 InputActionData *keys;
-};
-
-#endif // INPUT_KEYSORTFUNCTOR_H