| 258 | ICodeProbe::~ICodeProbe() {} |
| 259 | |
| 260 | bool ICodeProbe::operator==(const ICodeProbe& other) const { |
| 261 | return filename() == other.filename() && line() == other.line(); |
| 262 | } |
| 263 | |
| 264 | bool ICodeProbe::operator!=(const ICodeProbe& other) const { |
| 265 | return !(*this == other); |