1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//! The compact font format.

mod encoding;
mod font_set;
mod header;
mod number;
mod offset;

pub mod char_set;
pub mod index;
pub mod operation;

pub use self::char_set::CharSet;
pub use self::encoding::Encoding;
pub use self::font_set::FontSet;
pub use self::header::Header;
pub use self::offset::{Offset, OffsetSize};
pub use self::operation::Operations;

/// A glyph identifier.
pub type GlyphID = u16;

/// A string identifier.
pub type StringID = u16;