1 | // |
---|---|
2 | // Font.cpp |
3 | // |
4 | // Library: PDF |
5 | // Package: PDFCore |
6 | // Module: Font |
7 | // |
8 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/PDF/Font.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | namespace PDF { |
20 | |
21 | |
22 | Font::Font(HPDF_Doc* pPDF, const HPDF_Font& font): |
23 | Resource<HPDF_Font>(pPDF, font, HPDF_Font_GetFontName(font)) |
24 | { |
25 | } |
26 | |
27 | |
28 | |
29 | Font::~Font() |
30 | { |
31 | } |
32 | |
33 | |
34 | } } // namespace Poco::PDF |
35 |