summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/Device.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Device.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Device.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Device.h b/Source/Core/InputCommon/ControllerInterface/Device.h
index bda6f1fb0a..7b601cc775 100644
--- a/Source/Core/InputCommon/ControllerInterface/Device.h
+++ b/Source/Core/InputCommon/ControllerInterface/Device.h
@@ -136,8 +136,12 @@ public:
void FromDevice(const Device* const dev);
void FromString(const std::string& str);
std::string ToString() const;
+
bool operator==(const DeviceQualifier& devq) const;
- bool operator==(const Device* const dev) const;
+ bool operator!=(const DeviceQualifier& devq) const;
+
+ bool operator==(const Device* dev) const;
+ bool operator!=(const Device* dev) const;
std::string source;
int cid;