| 5182 | |
| 5183 | |
| 5184 | uint64_t BinaryView::GetUIntMetadata(const string& key) |
| 5185 | { |
| 5186 | auto data = QueryMetadata(key); |
| 5187 | if (!data || !data->IsUnsignedInteger()) |
| 5188 | throw QueryMetadataException("Failed to find key: " + key); |
| 5189 | return data->GetUnsignedInteger(); |
| 5190 | } |
| 5191 | |
| 5192 | |
| 5193 | vector<string> BinaryView::GetLoadSettingsTypeNames() |
no test coverage detected