1=head1 NAME 2 3Font::TTF::Useall - shortcut to 'use' all the Font::TTF modules 4 5=head1 SYNOPSIS 6 7 use Font::TTF::Useall; 8 9=head1 DESCRIPTION 10 11Useful for debugging, this module simply does a 'use' on all the other 12modules that are part of Font::TTF. 13 14=cut 15 16use Font::TTF::Ttc; 17use Font::TTF::PSNames; 18use Font::TTF::OTTags; 19use Font::TTF::EBDT; 20use Font::TTF::EBLC; 21use Font::TTF::DSIG; 22use Font::TTF::Sill; 23use Font::TTF::Silf; 24use Font::TTF::Cvt_; 25use Font::TTF::Fpgm; 26use Font::TTF::Glyf; 27use Font::TTF::Hdmx; 28use Font::TTF::Kern; 29use Font::TTF::Loca; 30use Font::TTF::LTSH; 31use Font::TTF::Name; 32use Font::TTF::OS_2; 33use Font::TTF::PCLT; 34use Font::TTF::Post; 35use Font::TTF::Prep; 36use Font::TTF::Vmtx; 37use Font::TTF::AATKern; 38use Font::TTF::AATutils; 39use Font::TTF::Anchor; 40use Font::TTF::Bsln; 41use Font::TTF::Delta; 42use Font::TTF::Fdsc; 43use Font::TTF::Feat; 44use Font::TTF::GrFeat; 45use Font::TTF::Fmtx; 46use Font::TTF::GPOS; 47use Font::TTF::Mort; 48use Font::TTF::Prop; 49use Font::TTF::GDEF; 50use Font::TTF::Coverage; 51use Font::TTF::GSUB; 52use Font::TTF::Hhea; 53use Font::TTF::Table; 54use Font::TTF::Ttopen; 55use Font::TTF::Glyph; 56use Font::TTF::Head; 57use Font::TTF::Hmtx; 58use Font::TTF::Vhea; 59use Font::TTF::Cmap; 60use Font::TTF::Utils; 61use Font::TTF::Maxp; 62use Font::TTF::Font; 63use Font::TTF::Kern::ClassArray; 64use Font::TTF::Kern::CompactClassArray; 65use Font::TTF::Kern::OrderedList; 66use Font::TTF::Kern::StateTable; 67use Font::TTF::Kern::Subtable; 68use Font::TTF::Mort::Chain; 69use Font::TTF::Mort::Contextual; 70use Font::TTF::Mort::Insertion; 71use Font::TTF::Mort::Ligature; 72use Font::TTF::Mort::Noncontextual; 73use Font::TTF::Mort::Rearrangement; 74use Font::TTF::Mort::Subtable; 75use Font::TTF::Features::Cvar; 76use Font::TTF::Features::Size; 77use Font::TTF::Features::Sset; 78use Font::TTF::Woff; 79use Font::TTF::Woff::MetaData; 80use Font::TTF::Woff::PrivateData; 81use Font::TTF::Glat; 82use Font::TTF::Gloc; 83use Font::TTF::Dumper; 84 85 861; 87 88=head1 AUTHOR 89 90Martin Hosken L<http://scripts.sil.org/FontUtils>. 91 92 93=head1 LICENSING 94 95Copyright (c) 1998-2016, SIL International (http://www.sil.org) 96 97This module is released under the terms of the Artistic License 2.0. 98For details, see the full text of the license in the file LICENSE. 99 100 101 102=cut 103