Intermediate commit - just have to add/fix POD for two classes, then done
[p5sagit/Excel-Template.git] / lib / Excel / Template / Container / Workbook.pm
CommitLineData
d0eafc11 1package Excel::Template::Container::Workbook;
2
3use strict;
4
5BEGIN {
6 use vars qw(@ISA);
7 @ISA = qw( Excel::Template::Container );
8
9 use Excel::Template::Container;
10}
11
121;
13__END__
14
15=head1 NAME
16
17Excel::Template::Container::Workbook - Excel::Template::Container::Workbook
18
19=head1 PURPOSE
20
21The root node
22
23=head1 NODE NAME
24
25WORKBOOK
26
27=head1 INHERITANCE
28
29Excel::Template::Container
30
31=head1 ATTRIBUTES
32
33Currently, none. There will be attributes added here, regarding how the
34workbook as a whole will behave.
35
36=head1 CHILDREN
37
38None
39
40=head1 EFFECTS
41
42None
43
44=head1 DEPENDENCIES
45
46None
47
48=head1 USAGE
49
50 <workbook>
51 ... Children here
52 </workbook>
53
54=head1 AUTHOR
55
c09684ff 56Rob Kinyon (rob.kinyon@gmail.com)
d0eafc11 57
58=head1 SEE ALSO
59
60Nothing
61
62=cut