mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-11 00:36:20 +02:00
75068e7d75
* Optimise header file usage a bit. * Compile the parser as C++.
42 lines
687 B
C++
42 lines
687 B
C++
#ifndef __PROFILES_H
|
|
#define __PROFILES_H
|
|
|
|
#include "types.hh"
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
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);
|
|
|
|
void deleteGeneration(const Path & profile, unsigned int gen);
|
|
|
|
void switchLink(Path link, Path target);
|
|
|
|
|
|
}
|
|
|
|
|
|
#endif /* !__PROFILES_H */
|