blob: 9e7efba7a3d09aa2c36dac5f470f5064326c3215 [file] [log] [blame]
yusukes@chromium.orgd257d182009-11-04 04:56:32 +00001// Copyright (c) 2009 The Chromium 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.
4
5#ifndef OTS_GASP_H_
6#define OTS_GASP_H_
7
8#include <utility> // std::pair
9#include <vector>
10
11#include "ots.h"
12
13namespace ots {
14
15struct OpenTypeGASP {
16 uint16_t version;
17 std::vector<std::pair<uint16_t, uint16_t> > gasp_ranges; // max PPEM, etc.
18};
19
20} // namespace ots
21
22#endif // OTS_GASP_H_