// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Tables.Woff {
///
/// Represents a table directory entry in a WOFF2 font file.
/// Each entry describes a single font table within the WOFF2 container.
/// See: .
///
internal sealed class Woff2TableHeader : TableHeader
{
///
/// Initializes a new instance of the class.
///
/// The 4-byte table identifier tag.
/// The checksum of the uncompressed table data.
/// The offset to the table data within the decompressed WOFF2 data stream.
/// The length of the table data (transform length if transformed, otherwise original length).
public Woff2TableHeader(string tag, uint checkSum, uint offset, uint len)
: base(tag, checkSum, offset, len)
{
}
}
}