summaryrefslogtreecommitdiff
path: root/src/input/inputtype.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-11-17 00:19:10 +0300
committerAndrei Karas <akaras@inbox.ru>2015-11-17 00:19:10 +0300
commit4825afb0187527d7eaa0ea3d903ad716a3eb9562 (patch)
treee516623a908eb6a8a4d053bbc39a36ff81aa4141 /src/input/inputtype.h
parentb3d17866a3c5700b52c2b0b954fce132a52c1dbf (diff)
downloadManaVerse-4825afb0187527d7eaa0ea3d903ad716a3eb9562.tar.gz
ManaVerse-4825afb0187527d7eaa0ea3d903ad716a3eb9562.tar.bz2
ManaVerse-4825afb0187527d7eaa0ea3d903ad716a3eb9562.tar.xz
ManaVerse-4825afb0187527d7eaa0ea3d903ad716a3eb9562.zip
Convert enum InputType into strong typed.
Diffstat (limited to 'src/input/inputtype.h')
-rw-r--r--src/input/inputtype.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/src/input/inputtype.h b/src/input/inputtype.h
deleted file mode 100644
index 021b8de46..000000000
--- a/src/input/inputtype.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/*
- * The ManaPlus Client
- * Copyright (C) 2012-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/>.
- */
-
-#ifndef INPUT_INPUTTYPE_H
-#define INPUT_INPUTTYPE_H
-
-// hack to avoid conflicts with windows headers.
-#ifdef KEYBOARD
-#undef KEYBOARD
-#endif
-#ifdef MOUSE
-#undef MOUSE
-#endif
-
-namespace InputType
-{
- enum Type
- {
- UNKNOWN = 0,
- KEYBOARD = 1,
- MOUSE = 2,
- JOYSTICK = 3
- };
-}
-
-#endif // INPUT_INPUTTYPE_H