1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-26 12:10:59 +01:00

Completed updateStateDerivation(Path storepath) method

This commit is contained in:
Wouter den Breejen 2007-06-04 19:41:46 +00:00
parent bcf9d3ab2f
commit 7166ad8eba
7 changed files with 59 additions and 50 deletions

View file

@ -194,10 +194,10 @@ public:
virtual PathSet getStateReferencesClosure(const Path & path) = 0;
/* TODO */
virtual void setUpdatedStateDerivation(const Path & newdrv, const Path & olddrv) = 0;
virtual void setUpdatedStateDerivation(const Path & newdrv, const Path & storepath) = 0;
/* TODO */
virtual Path getUpdatedStateDerivation(const Path & olddrv) = 0;
virtual Path updateStateDerivation(const Path & storepath) = 0;
};