/**** * * Test IV lib debugging code, i.e., code surroundd by #ifdef DEBUGGING. * */ #include #include #include #include main() { World* w = new World; HBox* hb = new HBox; Tray* t = new Tray(); hb->Insert(0); hb->Insert(hb); hb->Insert(new Message("test")); t->Insert(hb); w->InsertApplication(hb); w->InsertApplication(new Message("test")); w->Run(); }