summaryrefslogtreecommitdiff
path: root/dviware/dvisvgm/src/fonts/Base14Fonts.hpp
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2023-01-12 03:01:29 +0000
committerNorbert Preining <norbert@preining.info>2023-01-12 03:01:29 +0000
commit6a7900c93acc16d1bbd2f1e26286c7dd7387e6c0 (patch)
tree76196287351cba68a51934c49468bf1a7846aa76 /dviware/dvisvgm/src/fonts/Base14Fonts.hpp
parentc1c19023b4b1d43cb874f84df5102b485853e672 (diff)
CTAN sync 202301120301
Diffstat (limited to 'dviware/dvisvgm/src/fonts/Base14Fonts.hpp')
-rw-r--r--dviware/dvisvgm/src/fonts/Base14Fonts.hpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/dviware/dvisvgm/src/fonts/Base14Fonts.hpp b/dviware/dvisvgm/src/fonts/Base14Fonts.hpp
new file mode 100644
index 0000000000..4e410fdc61
--- /dev/null
+++ b/dviware/dvisvgm/src/fonts/Base14Fonts.hpp
@@ -0,0 +1,32 @@
+/*************************************************************************
+** Base14Fonts.hpp **
+** **
+** This file is part of dvisvgm -- a fast DVI to SVG converter **
+** Copyright (C) 2005-2022 Martin Gieseking <martin.gieseking@uos.de> **
+** **
+** This program is free software; you can redistribute it and/or **
+** modify it under the terms of the GNU General Public License as **
+** published by the Free Software Foundation; either version 3 of **
+** the License, or (at your option) any later version. **
+** **
+** This program is distributed in the hope that it will be useful, but **
+** WITHOUT ANY WARRANTY; without even the implied warranty of **
+** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the **
+** GNU General Public License for more details. **
+** **
+** You should have received a copy of the GNU General Public License **
+** along with this program; if not, see <http://www.gnu.org/licenses/>. **
+*************************************************************************/
+
+#pragma once
+
+#include <cstddef>
+#include <string>
+
+struct MemoryFontData {
+ MemoryFontData () =delete;
+ const char *data;
+ size_t size;
+};
+
+const MemoryFontData* find_base14_font (const std::string &name);