1 // Copyright (c) 2011-2017 The OTS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
12 class OpenTypeGPOS
: public Table
{
14 explicit OpenTypeGPOS(Font
*font
, uint32_t tag
)
15 : Table(font
, tag
, tag
),
21 bool Parse(const uint8_t *data
, size_t length
);
22 bool Serialize(OTSStream
*out
);
24 // Number of lookups in GPOS table
28 const uint8_t *m_data
;