| 46 | |
| 47 | |
| 48 | BaseClassArray::BaseClassArray(BinaryView *view, uint64_t address, uint32_t length) : length(length) |
| 49 | { |
| 50 | BinaryReader reader = BinaryReader(view); |
| 51 | reader.Seek(address); |
| 52 | descriptors = {}; |
| 53 | for (size_t i = 0; i < length; i++) |
| 54 | descriptors.emplace_back(reader.Read32()); |
| 55 | } |
| 56 | |
| 57 | |
| 58 | TypeDescriptor::TypeDescriptor(BinaryView *view, uint64_t address) |
nothing calls this directly
no test coverage detected