mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63069 954022d7-b5bf-4e40-9824-e11837661b57
15 lines
222 B
C++
15 lines
222 B
C++
#include "Font.h"
|
|
|
|
namespace PdfWriter
|
|
{
|
|
CFontDict::CFontDict(CXref* pXref, CDocument* pDocument)
|
|
{
|
|
m_pXref = pXref;
|
|
pXref->Add(this);
|
|
m_pDocument = pDocument;
|
|
}
|
|
CFontDict::~CFontDict()
|
|
{
|
|
}
|
|
}
|