2004-02-06 16:57:10 +02:00
|
|
|
#ifndef __PROFILES_H
|
|
|
|
#define __PROFILES_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
2004-02-06 18:03:27 +02:00
|
|
|
struct Generation
|
|
|
|
{
|
|
|
|
int number;
|
|
|
|
Path path;
|
|
|
|
time_t creationTime;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef list<Generation> Generations;
|
|
|
|
|
|
|
|
|
|
|
|
/* Returns the list of currently present generations for the specified
|
|
|
|
profile, sorted by generation number. */
|
2004-02-06 18:16:55 +02:00
|
|
|
Generations findGenerations(Path profile, int & curGen);
|
2004-02-06 18:03:27 +02:00
|
|
|
|
2004-02-06 16:57:10 +02:00
|
|
|
Path createGeneration(Path profile, Path outPath, Path drvPath);
|
|
|
|
|
|
|
|
void switchLink(Path link, Path target);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__PROFILES_H */
|