summaryrefslogtreecommitdiffstats
path: root/lib/Spreadsheet/Template/Writer/XLSX.pm
blob: 680e103382f8f9be3baae01b0375e2697d93dad7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package Spreadsheet::Template::Writer::XLSX;
use Moose;
# ABSTRACT: generate XLSX files from templates

with 'Spreadsheet::Template::Writer::Excel';

=head1 SYNOPSIS

  my $template = Spreadsheet::Template->new(
      writer_class => 'Spreadsheet::Template::Writer::XLSX',
  );

=head1 DESCRIPTION

This class implements L<Spreadsheet::Template::Writer>, allowing you to
generate XLSX files.

=cut

sub excel_class { 'Excel::Writer::XLSX' }

__PACKAGE__->meta->make_immutable;
no Moose;

1;