4 #include "w_node_header.h"
9 int main (int argc, char *argv[])
13 BTree tree ("test.idx", 64);
17 Random::Ints (lst, 20);
19 std::list<int>::iterator it = lst.begin ();
20 while (it != lst.end ()) {
27 ///signal(SIGINT, finish);
35 /* Si se soporta color, los inicializo */
38 /* Simple color assignment, often all we need. */
39 init_pair(COLOR_BLACK, COLOR_BLACK, COLOR_BLACK); /* COLOR_PAIR(1) */
40 init_pair(COLOR_GREEN, COLOR_GREEN, COLOR_BLACK);
41 init_pair(COLOR_RED, COLOR_RED, COLOR_BLACK);
42 init_pair(COLOR_CYAN, COLOR_CYAN, COLOR_BLACK);
43 init_pair(COLOR_WHITE, COLOR_WHITE, COLOR_BLACK);
44 init_pair(COLOR_MAGENTA, COLOR_MAGENTA, COLOR_BLACK);
45 init_pair(COLOR_BLUE, COLOR_BLUE, COLOR_BLACK);
46 init_pair(COLOR_YELLOW, COLOR_YELLOW, COLOR_BLACK);
47 init_pair(COLOR_PAIR (1), COLOR_RED, COLOR_RED);
50 /* Creo la ventana principal */
51 Window *screen = new Window ("TreeMulator", 0, 0, 0, 0, true);
52 wBTree *wb = new wBTree (screen);