fix parset issues

This commit is contained in:
vrd
2023-02-25 11:57:15 +02:00
parent e626470f71
commit 176ca1c85a
6 changed files with 65 additions and 50 deletions
+6 -6
View File
@@ -15,14 +15,14 @@ int main(int argc, char* argv[])
parseTftFile(f).display();
Tree test1("Dechkovi");
test1.loadFromFile();
/* test1.loadFromFile(); */
/* test1.addPerson("Rumen", M, Nobody, Nobody, {1968, 8, 9}); */
/* test1.addPerson("Nadejda", F, Nobody, Nobody, {1972, 12, 15}); */
/* test1.addRelation(0, Spouse, 1); */
/* test1.addPerson("Venelin", M, 0, 1, {1998, 6, 9}); */
/* test1.addPerson("Vasil", M, 0, 1, {2001, 1, 16}); */
test1.addPerson("Rumen", M, Nobody, Nobody, {1968, 8, 9});
test1.addPerson("Nadejda", F, Nobody, Nobody, {1972, 12, 15});
test1.addRelation(0, Spouse, 1);
test1.addPerson("Venelin", M, 0, 1, {1998, 6, 9});
test1.addPerson("Vasil", M, 0, 1, {2001, 1, 16});
/* test1.saveToFile(); */
Tree test2("Karamanovi");