Allow Backups to manage themselves when created and garbage collected.
| 38 | |
| 39 | // Allow Backups to manage themselves when created and garbage collected. |
| 40 | inline void AddBackup(Backup* backup) { backups.insert(backups.end(), backup); } |
| 41 | inline void RemoveBackup(Backup* backup) { backups.erase(backup); } |
| 42 | |
| 43 | // A view for Statements to see and modify Database state. |