| 153 | } |
| 154 | |
| 155 | void PersistenceManager::clearAll() |
| 156 | { |
| 157 | // Clear the file data in case it hasn't cleared yet |
| 158 | clearFileData(); |
| 159 | |
| 160 | // Clear the dirty object list |
| 161 | mDirtyObjects.clear(); |
| 162 | |
| 163 | // Clear the remove field list |
| 164 | mRemoveFields.clear(); |
| 165 | } |
| 166 | |
| 167 | bool PersistenceManager::readFile(const char* fileName) |
| 168 | { |
no test coverage detected