Nix/src/globals.cc
Eelco Dolstra 822794001c * Started implementing the new evaluation model.
* Lots of refactorings.
* Unit tests.
2003-06-16 13:33:38 +00:00

20 lines
322 B
C++

#include "globals.hh"
#include "db.hh"
string dbRefs = "refs";
string dbNFs = "nfs";
string dbNetSources = "netsources";
string nixValues = "/UNINIT";
string nixLogDir = "/UNINIT";
string nixDB = "/UNINIT";
void initDB()
{
createDB(nixDB, dbRefs);
createDB(nixDB, dbNFs);
createDB(nixDB, dbNetSources);
}