Treemap::Simple - Create Treemaps from arbitrary data.


Treemap documentation Contained in the Treemap distribution.

Index


Code Index:

NAME

Top

Treemap::Simple - Create Treemaps from arbitrary data.

SYNOPSIS

Top

  use Treemap;
  $tmap = Treemap->new();

DESCRIPTION

Top

Create Treemaps from arbitrary data.

EXPORT

None by default.

AUTHOR

Top

 Simon Ditner, <simon@uc.org>
 Eric Maki, <eric@uc.org>

SEE ALSO

Top

perl.


Treemap documentation Contained in the Treemap distribution.

package Treemap::Simple;

use 5.006;
use strict;
use warnings;
use Carp;

require Exporter;

our @ISA = qw(Exporter Treemap);
our @EXPORT_OK = (  );
our @EXPORT = qw( );
our $VERSION = '0.01';


# ------------------------------------------
# Methods:
# ------------------------------------------


# ------------------------------------------
# new() - Create and return new Treemap 
#         object:
# ------------------------------------------
sub new 
{
   my $proto = shift;
   my $class = ref( $proto ) || $proto;
   my $self = {};

   bless $self, $class;
   return $self;
}

1;

__END__

# ------------------------------------------
# Documentation:
# ------------------------------------------