| 34 | |
| 35 | |
| 36 | bool ModuleItem::operator==(const ModuleItem& other) const |
| 37 | { |
| 38 | return (m_address == other.address()) && (m_size == other.size()) && (m_name == other.name()) |
| 39 | && (m_path == other.path()); |
| 40 | } |
| 41 | |
| 42 | |
| 43 | bool ModuleItem::operator!=(const ModuleItem& other) const |