#include <packdata_list.h>
Inheritance diagram for packdata_list::
Public Methods | |
void | pr () |
Print the packet data list. More... |
The packdata_list is constructed by traversing the wavelet packet tree depth first, left to right. New elements are added to the end of the list, ordering the list from front to back. The resulting list reflects the ordering of the wavelet packet tree nodes the make up the best basis.
This class extends the FIFL_LIST instance by adding a print function.
Definition at line 60 of file packdata_list.h.
|
Print the packet data list. Each list element (which is a wavelet packet data set) is printed one element per line. Definition at line 69 of file packdata_list.h. Referenced by main().
00070 { 00071 handle h; 00072 packdata<T> *elem; 00073 00074 for (h = first(); h != 0; h = next( h )) { 00075 elem = get_item( h ); 00076 elem->pr(); 00077 } // for h 00078 printf("\n"); 00079 } // pr |