rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | package 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 | |
| 18 | use strict; |
| 19 | use warnings; |
| 20 | |
| 21 | our $VERSION = '0.59'; |
| 22 | |
| 23 | sub new { |
| 24 | my ( $class, %rhIni ) = @_; |
| 25 | my $self = \%rhIni; |
| 26 | |
| 27 | bless $self, $class; |
| 28 | } |
| 29 | |
| 30 | 1; |
| 31 | |
| 32 | __END__ |
| 33 | |
| 34 | =pod |
| 35 | |
| 36 | =head1 NAME |
| 37 | |
| 38 | Spreadsheet::ParseExcel::Font - A class for Cell fonts. |
| 39 | |
| 40 | =head1 SYNOPSIS |
| 41 | |
| 42 | See the documentation for Spreadsheet::ParseExcel. |
| 43 | |
| 44 | =head1 DESCRIPTION |
| 45 | |
| 46 | This module is used in conjunction with Spreadsheet::ParseExcel. See the documentation for Spreadsheet::ParseExcel. |
| 47 | |
| 48 | =head1 AUTHOR |
| 49 | |
| 50 | Maintainer 0.40+: John McNamara jmcnamara@cpan.org |
| 51 | |
| 52 | Maintainer 0.27-0.33: Gabor Szabo szabgab@cpan.org |
| 53 | |
| 54 | Original author: Kawai Takanori kwitknr@cpan.org |
| 55 | |
| 56 | =head1 COPYRIGHT |
| 57 | |
| 58 | Copyright (c) 2009-2010 John McNamara |
| 59 | |
| 60 | Copyright (c) 2006-2008 Gabor Szabo |
| 61 | |
| 62 | Copyright (c) 2000-2006 Kawai Takanori |
| 63 | |
| 64 | All rights reserved. |
| 65 | |
| 66 | You 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 | |