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