aboutsummaryrefslogtreecommitdiff
path: root/src/input_common/main.h
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-08-28 20:10:33 -0400
committerGitHub <noreply@github.com>2020-08-28 20:10:33 -0400
commit57d9ef5a899dd32be7bae5aaeb53bc7cd2766a78 (patch)
tree32ad64a7368d1f7f0506e3a0308fc939accdd4e0 /src/input_common/main.h
parent1c9a1de30dc7ba19b736f906b64dfd64c7aa9cf5 (diff)
parent98f5d8a713966e960f0e4d4f520b67786ebad9d9 (diff)
Merge pull request #4600 from lioncash/prototype
input_common/main: Remove unimplemented prototype
Diffstat (limited to 'src/input_common/main.h')
-rw-r--r--src/input_common/main.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/input_common/main.h b/src/input_common/main.h
index f66308163d..58e5dc2500 100644
--- a/src/input_common/main.h
+++ b/src/input_common/main.h
@@ -8,13 +8,19 @@
#include <string>
#include <unordered_map>
#include <vector>
-#include "input_common/gcadapter/gc_poller.h"
-#include "input_common/settings.h"
namespace Common {
class ParamPackage;
}
+namespace Settings::NativeAnalog {
+enum Values : int;
+}
+
+namespace Settings::NativeButton {
+enum Values : int;
+}
+
namespace InputCommon {
namespace Polling {
@@ -40,9 +46,6 @@ public:
*/
virtual Common::ParamPackage GetNextInput() = 0;
};
-
-// Get all DevicePoller from all backends for a specific device type
-std::vector<std::unique_ptr<DevicePoller>> GetPollers(DeviceType type);
} // namespace Polling
class GCAnalogFactory;