Data/TreeDumper version
========================

Version 0.14

Data::TreeDumper dumps any data structure in tree fasion. Try the examples
that come with Data::TreeDumper.

In this release:

        CHANGED: the documentation slightly
	ADDED: DISPLAY_OBJECT_TYPE
	CHANGED: TreeDumper is not exported anymore to eliminate recuring tests of setup variables.
	CHANGED: refactored the dmper code
	CHANGED: Separated OO interface
	FIXED: perl address properly displayed for scalars
	ADDED: RENDERER plug-in support and some examples
	FIXED: doubled the dump speed by warping when necessary only

Ex:

my $tree = { ... } ;
print DumpTree($tree, 'Tree:') ;

#output

Tree:
|- A [H1]
|  |- a [H2]
|  |- bbbbbb = CODE(0x8139fa0) [C3]
|  |- c123 [C4 -> C3]
|  `- d [R5]
|     `- REF(0x8139fb8) [C6 -> C3]
|- ARRAY [A7]
|  |- 0 [S8] = elment_1
|  |- 1 [S9] = element_2
|  `- 2 [S10] = element_3
`- C [H11]
   `- b [H12]
      `- a [H13]
         |- a [H14]
         |- b = CODE(0x81ab10c) [C15]
         `- c [S16] = 42

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

	Term::Size;
	Text::Wrap  ;

COPYRIGHT AND LICENCE

  Copyright (c) 2003 Nadim Ibn Hamouda el Khemir. All rights
  reserved.  This program is free software; you can redis-
  tribute it and/or modify it under the same terms as Perl
  itself.

If you find any value in this module, mail me!  All hints, tips, flammes and wishes
are welcome at <nadim@khemir.net>.

