| 5205 | |
| 5206 | |
| 5207 | Ref<Settings> BinaryView::GetLoadSettings(const string& typeName) |
| 5208 | { |
| 5209 | BNSettings* settings = BNBinaryViewGetLoadSettings(m_object, typeName.c_str()); |
| 5210 | if (!settings) |
| 5211 | return nullptr; |
| 5212 | return new Settings(settings); |
| 5213 | } |
| 5214 | |
| 5215 | |
| 5216 | void BinaryView::SetLoadSettings(const string& typeName, Ref<Settings> settings) |
no test coverage detected