Device: Provide operator!= counterparts to operator== for DeviceQualifier

Makes comparison logic symmetric
This commit is contained in:
Lioncash
2017-06-03 19:32:46 -04:00
parent 4b53093acb
commit 5862d1fc41
2 changed files with 15 additions and 1 deletions

View File

@ -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;