| 27 | |
| 28 | |
| 29 | bool ProcessItem::operator==(const ProcessItem& other) const |
| 30 | { |
| 31 | return (m_pid == other.pid()) && (m_processName == other.processName()); |
| 32 | } |
| 33 | |
| 34 | |
| 35 | bool ProcessItem::operator!=(const ProcessItem& other) const |
nothing calls this directly
no test coverage detected