blob: 2ce468dfa83716bdc3dafbf0d4b3bd8ed304f52c (
plain) (
tree)
|
|
#ifndef __PROFILES_H
#define __PROFILES_H
#include <string>
#include "util.hh"
struct Generation
{
int number;
Path path;
time_t creationTime;
Generation()
{
number = -1;
}
operator bool() const
{
return number != -1;
}
};
typedef list<Generation> Generations;
/* Returns the list of currently present generations for the specified
profile, sorted by generation number. */
Generations findGenerations(Path profile, int & curGen);
Path createGeneration(Path profile, Path outPath, Path drvPath);
void switchLink(Path link, Path target);
#endif /* !__PROFILES_H */
|