blob: eb3b1fdae9987d034a3ac52603ab5a3933a42807 [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001package Spreadsheet::ParseExcel::Font;
2
3###############################################################################
4#
5# Spreadsheet::ParseExcel::Font - A class for Cell fonts.
6#
7# Used in conjunction with Spreadsheet::ParseExcel.
8#
9# Copyright (c) 2009 John McNamara
10# Copyright (c) 2006-2008 Gabor Szabo
11# Copyright (c) 2000-2006 Kawai Takanori
12#
13# perltidy with standard settings.
14#
15# Documentation after __END__
16#
17
18use strict;
19use warnings;
20
21our $VERSION = '0.59';
22
23sub new {
24 my ( $class, %rhIni ) = @_;
25 my $self = \%rhIni;
26
27 bless $self, $class;
28}
29
301;
31
32__END__
33
34=pod
35
36=head1 NAME
37
38Spreadsheet::ParseExcel::Font - A class for Cell fonts.
39
40=head1 SYNOPSIS
41
42See the documentation for Spreadsheet::ParseExcel.
43
44=head1 DESCRIPTION
45
46This module is used in conjunction with Spreadsheet::ParseExcel. See the documentation for Spreadsheet::ParseExcel.
47
48=head1 AUTHOR
49
50Maintainer 0.40+: John McNamara jmcnamara@cpan.org
51
52Maintainer 0.27-0.33: Gabor Szabo szabgab@cpan.org
53
54Original author: Kawai Takanori kwitknr@cpan.org
55
56=head1 COPYRIGHT
57
58Copyright (c) 2009-2010 John McNamara
59
60Copyright (c) 2006-2008 Gabor Szabo
61
62Copyright (c) 2000-2006 Kawai Takanori
63
64All rights reserved.
65
66You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file.
67
68=cut
69