about summary refs log blame commit diff
path: root/src/nix-env/profiles.hh
blob: f9480ed3f3d4d249b4d9346f0a8a31bab29e3d22 (plain) (tree)
1
2
3
4
5
6
7
8







                    













                                                                      





                                                                
#ifndef __PROFILES_H
#define __PROFILES_H

#include <string>

#include "util.hh"


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. */
Generations findGenerations(Path profile);
    
Path createGeneration(Path profile, Path outPath, Path drvPath);

void switchLink(Path link, Path target);


#endif /* !__PROFILES_H */