1 | //======================================================================== |
2 | // |
3 | // BuiltinFontWidth.h |
4 | // |
5 | // Copyright 2001-2003 Glyph & Cog, LLC |
6 | // |
7 | //======================================================================== |
8 | |
9 | //======================================================================== |
10 | // |
11 | // Modified under the Poppler project - http://poppler.freedesktop.org |
12 | // |
13 | // All changes made under the Poppler project to this file are licensed |
14 | // under GPL version 2 or later |
15 | // |
16 | // Copyright (C) 2020 Albert Astals Cid <aacid@kde.org> |
17 | // |
18 | // To see a description of the changes please see the Changelog file that |
19 | // came with your tarball or type make ChangeLog if you are building from git |
20 | // |
21 | //======================================================================== |
22 | |
23 | #ifndef BUILTINFONTWIDTH_H |
24 | #define BUILTINFONTWIDTH_H |
25 | |
26 | struct BuiltinFontWidth |
27 | { |
28 | const char *name; |
29 | unsigned short width; |
30 | }; |
31 | |
32 | #endif |
33 | |