forked from lix-project/lix
822794001c
* Lots of refactorings. * Unit tests.
20 lines
322 B
C++
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);
|
|
}
|