The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Runops::Movie::TM::Simple;

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

require Exporter;

our @ISA = qw(Exporter Runops::Movie::TM);
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:
# ------------------------------------------

=head1 NAME

Runops::Movie::TM::Simple - (fork of Treemap) Create Treemaps from arbitrary data. 

=head1 SYNOPSIS

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

=head1 DESCRIPTION

Create Treemaps from arbitrary data.  

=head2 EXPORT

None by default.

=head1 AUTHOR

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

=head1 SEE ALSO

L<perl>.

=cut