#include "gdef.h"
#include <limits>
#include <vector>
#include "gpos.h"
#include "gsub.h"
#include "layout.h"
#include "maxp.h"
#include "variations.h"
namespace {
const uint16_t kMaxGlyphClassDefValue = …;
const uint16_t kMaxCaretValueFormat = …;
}
namespace ots {
bool OpenTypeGDEF::ParseAttachListTable(const uint8_t *data, size_t length) { … }
bool OpenTypeGDEF::ParseLigCaretListTable(const uint8_t *data, size_t length) { … }
bool OpenTypeGDEF::ParseMarkGlyphSetsDefTable(const uint8_t *data, size_t length) { … }
bool OpenTypeGDEF::Parse(const uint8_t *data, size_t length) { … }
bool OpenTypeGDEF::Serialize(OTSStream *out) { … }
}