Lines Matching refs:rhs
55 bool operator<(const ClassOfDevice& rhs) const {
56 return cod < rhs.cod;
58 bool operator==(const ClassOfDevice& rhs) const {
59 return cod == rhs.cod;
61 bool operator>(const ClassOfDevice& rhs) const {
62 return (rhs < *this);
64 bool operator<=(const ClassOfDevice& rhs) const {
65 return !(*this > rhs);
67 bool operator>=(const ClassOfDevice& rhs) const {
68 return !(*this < rhs);
70 bool operator!=(const ClassOfDevice& rhs) const {
71 return !(*this == rhs);