diff options
author | 2016-05-27 02:59:42 +1000 | |
---|---|---|
committer | 2016-05-27 03:00:20 +1000 | |
commit | 87429e74d90481317db41dfc45c7751039cd8b48 (patch) | |
tree | 662d3fd49661f4dc98611ebedcf8ffee62ed8b42 /src/osd/modules/input/input_common.h | |
parent | 4efb2fe8257a7ce35696f8942122358822079056 (diff) |
ui refactoring [Vas Crabb]
* move menu classes into ::ui namesapce
* reduce scope of many symbols
(first step in making UI code less rage-inducing so I can fix text input)
Diffstat (limited to 'src/osd/modules/input/input_common.h')
-rw-r--r-- | src/osd/modules/input/input_common.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/osd/modules/input/input_common.h b/src/osd/modules/input/input_common.h index 094f3873f05..56607d88d4d 100644 --- a/src/osd/modules/input/input_common.h +++ b/src/osd/modules/input/input_common.h @@ -11,9 +11,14 @@ #ifndef INPUT_COMMON_H_ #define INPUT_COMMON_H_ -#include <memory> +#include "input_module.h" + #include <chrono> +#include <memory> +#include <mutex> #include <queue> +#include <string> + //============================================================ // PARAMETERS @@ -618,4 +623,4 @@ inline static INT32 normalize_absolute_axis(INT32 raw, INT32 rawmin, INT32 rawma } } -#endif +#endif // INPUT_COMMON_H_ |