Excel::Template::Container::Workbook - Excel::Template::Container::Workbook


Excel-Template documentation Contained in the Excel-Template distribution.

Index


Code Index:

NAME

Top

Excel::Template::Container::Workbook - Excel::Template::Container::Workbook

PURPOSE

Top

The root node

NODE NAME

Top

WORKBOOK

INHERITANCE

Top

Excel::Template::Container

ATTRIBUTES

Top

Currently, none. There will be attributes added here, regarding how the workbook as a whole will behave.

CHILDREN

Top

None

EFFECTS

Top

None

DEPENDENCIES

Top

None

USAGE

Top

  <workbook>
    ... Children here
  </workbook>

AUTHOR

Top

Rob Kinyon (rob.kinyon@gmail.com)

SEE ALSO

Top

Nothing


Excel-Template documentation Contained in the Excel-Template distribution.

package Excel::Template::Container::Workbook;

use strict;

BEGIN {
    use vars qw(@ISA);
    @ISA = qw( Excel::Template::Container );

    use Excel::Template::Container;
}

1;
__END__