1// 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_GLYF_H_
6#define OTS_GLYF_H_
7
8#include <utility>  // std::pair
9#include <vector>
10
11#include "ots.h"
12
13namespace ots {
14
15struct OpenTypeGLYF {
16  std::vector<std::pair<const uint8_t*, size_t> > iov;
17};
18
19}  // namespace ots
20
21#endif  // OTS_GLYF_H_
22