| 21 | |
| 22 | |
| 23 | ClassHierarchyDescriptor::ClassHierarchyDescriptor(BinaryView *view, uint64_t address) |
| 24 | { |
| 25 | BinaryReader reader = BinaryReader(view); |
| 26 | reader.Seek(address); |
| 27 | signature = reader.Read32(); |
| 28 | attributes = reader.Read32(); |
| 29 | numBaseClasses = reader.Read32(); |
| 30 | pBaseClassArray = static_cast<int32_t>(reader.Read32()); |
| 31 | } |
| 32 | |
| 33 | |
| 34 | BaseClassDescriptor::BaseClassDescriptor(BinaryView *view, uint64_t address) |
nothing calls this directly
no test coverage detected