| Font-TTF documentation | Contained in the Font-TTF distribution. |
Font::TTF::Kern::CompactClassArray - Compact Class Array kern subtable for AAT
Reads the table into memory
Writes the table to a file
Prints a human-readable representation of the table
None known
Jonathan Kew Jonathan_Kew@sil.org. See Font::TTF::Font for copyright and licensing.
| Font-TTF documentation | Contained in the Font-TTF distribution. |
package Font::TTF::Kern::CompactClassArray;
use strict; use vars qw(@ISA); use Font::TTF::Utils; use Font::TTF::AATutils; @ISA = qw(Font::TTF::Kern::Subtable); sub new { my ($class) = @_; my ($self) = {}; $class = ref($class) || $class; bless $self, $class; }
sub read { my ($self, $fh) = @_; die "incomplete"; $self; }
sub out_sub { my ($self, $fh) = @_; die "incomplete"; $self; }
sub print { my ($self, $fh) = @_; my $post = $self->post(); $fh = 'STDOUT' unless defined $fh; die "incomplete"; } sub type { return 'kernCompactClassArray'; } 1;