| 51 | } |
| 52 | |
| 53 | bool LocalStorage::Reset() |
| 54 | { |
| 55 | std::lock_guard<std::mutex> guard(m_mutex); |
| 56 | |
| 57 | return base::DeleteFileX(GetEditorFilePath()); |
| 58 | } |
| 59 | |
| 60 | // StorageMemory ----------------------------------------------------------------------------------- |
| 61 | bool InMemoryStorage::Save(xml_document const & doc) |
no test coverage detected