``class BaseAddressDetectionReason`` is a class that stores information used to understand why a base address is a candidate. It consists of a pointer, the offset of the point-of-interest that the pointer aligns with, and the type of point-of-interest (string, function, or data variable)
| 31 | |
| 32 | @dataclass |
| 33 | class BaseAddressDetectionReason: |
| 34 | """``class BaseAddressDetectionReason`` is a class that stores information used to understand why a base address |
| 35 | is a candidate. It consists of a pointer, the offset of the point-of-interest that the pointer aligns with, and the |
| 36 | type of point-of-interest (string, function, or data variable)""" |
| 37 | |
| 38 | pointer: int |
| 39 | offset: int |
| 40 | type: BaseAddressDetectionPOIType |
| 41 | |
| 42 | |
| 43 | class BaseAddressDetection: |