| 179 | |
| 180 | |
| 181 | string Settings::SerializeSchema() |
| 182 | { |
| 183 | char* schemaStr = BNSettingsSerializeSchema(m_object); |
| 184 | string schema(schemaStr); |
| 185 | BNFreeString(schemaStr); |
| 186 | return schema; |
| 187 | } |
| 188 | |
| 189 | |
| 190 | bool Settings::DeserializeSettings(const string& contents, Ref<BinaryView> view, BNSettingsScope scope) |
no outgoing calls
no test coverage detected