blob: 787a986e6e8574ef290a2376e0d4f8ee3915eece [file] [log] [blame]
reed@google.com6ec97b62013-03-04 15:16:06 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkFontStream_DEFINED
9#define SkFontStream_DEFINED
10
11class SkStream;
12
13#include "SkTypeface.h"
14
15class SkFontStream {
16public:
17 static int GetTableTags(SkStream*, SkFontTableTag tags[]);
18 static size_t GetTableData(SkStream*, SkFontTableTag tag,
19 size_t offset, size_t length, void* data);
20};
21
22#endif
23
24