00001 00005 00006 // version 1: Dec 1994 Piet Hut 00007 00008 #include "node.h" 00009 00010 /*===========================================================================*/ 00011 00012 #ifdef TOOLBOX 00013 00014 /*----------------------------------------------------------------------------- 00015 * main -- driver to directly print out a tree structure 00016 *----------------------------------------------------------------------------- 00017 */ 00018 main(int argc, char ** argv) 00019 { 00020 node * root; /* root node */ 00021 00022 check_help(); 00023 00024 while (root = get_node(cin)) 00025 { 00026 root->pretty_print_tree(cerr); 00027 rmtree(root); 00028 } 00029 } 00030 00031 #endif 00032 00033 /*===========================================================================*/ 00034 00035 /* endof: pretty_print_tree.C */ 00036