blob: 81be5e5e71c467854a8df879b0b0d74ac6bb4b77 [file] [log] [blame]
// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef OTS_CFF_H_
#define OTS_CFF_H_
#include "ots.h"
#include <string>
#include <vector>
namespace ots {
struct OpenTypeCFF {
const uint8_t *data;
size_t length;
// Name INDEX. This name is used in name.cc as a postscript font name.
std::string name;
size_t font_dict_length;
std::vector<size_t> font_indices_in_fdselect;
};
} // namespace ots
#endif // OTS_CFF_H_