whitespace
This commit is contained in:
@@ -8,6 +8,8 @@ using std::cout;
|
||||
|
||||
int main()
|
||||
{
|
||||
initscr(); /* Start curses mode */
|
||||
|
||||
/*Tree test1("Dechkovi"); //addTree Dechkovi addTree Karamanovi load 0 load 1 (to work with these example trees)
|
||||
Tree test2("Karamanovi");
|
||||
|
||||
@@ -55,6 +57,10 @@ int main()
|
||||
firstTree.printOldestAncestors(3);
|
||||
|
||||
|
||||
/* ====================================================== */
|
||||
|
||||
refresh(); /* Print it on to the real screen */
|
||||
|
||||
Array<Tree> trees;
|
||||
|
||||
bool quit = false;
|
||||
@@ -90,13 +96,13 @@ int main()
|
||||
};
|
||||
|
||||
unsigned curTree = 0, //Currently selected tree ID
|
||||
id, secondId; //Indexes
|
||||
id, secondId; // Person IDs
|
||||
Tree* newTree;
|
||||
char name[128], secondName[128];
|
||||
U8 day, month; //TODO add h m
|
||||
U16 year;
|
||||
bool sex;
|
||||
unsigned father, mother;
|
||||
unsigned father, mother; // IDs
|
||||
|
||||
do
|
||||
{
|
||||
@@ -262,5 +268,8 @@ int main()
|
||||
|
||||
} while (!quit);
|
||||
|
||||
endwin(); /* stop ncursers */
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user