1package Font::TTF::Woff;
2
3=head1 NAME
4
5Font::TTF::WOFF - holds Web Open Font File (WOFF) data for the font
6
7=head1 DESCRIPTION
8
9This contains the WOFF packaging data.
10
11=head1 INSTANCE VARIABLES
12
13This object supports the following instance variables (which, because they
14reflect the structure of the table, do not begin with a space):
15
16=over
17
18=item majorVersion
19
20=item minorVersion
21
22The two version integers come directly from the WOFF font header.
23
24=item metaData
25
26Contains a reference to Font::TTF::Woff::Meta structure, if the font has WOFF metadata.
27
28=item privateData
29
30Contains a reference to a Font::TTF::Woff::Private structure, if the font has a WOFF private data block
31
32=back
33
34=head1 METHODS
35
36=cut
37
38use strict;
39use vars qw(@ISA %fields @field_info);
40
41require Font::TTF::Table;
42
43@ISA = qw(Font::TTF::Table);
44
451;
46
47=head1 AUTHOR
48
49Bob Hallissy. L<http://scripts.sil.org/FontUtils>.
50
51
52=head1 LICENSING
53
54Copyright (c) 1998-2016, SIL International (http://www.sil.org)
55
56This module is released under the terms of the Artistic License 2.0.
57For details, see the full text of the license in the file LICENSE.
58
59
60
61=cut