mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
15 lines
219 B
C++
15 lines
219 B
C++
#include "Font.h"
|
|
|
|
namespace PdfWriter
|
|
{
|
|
CFontDict::CFontDict(CXref* pXref, CDocument* pDocument)
|
|
{
|
|
m_pXref = pXref;
|
|
pXref->Add(this);
|
|
m_pDocument = pDocument;
|
|
}
|
|
CFontDict::~CFontDict()
|
|
{
|
|
}
|
|
}
|