Files
core/PdfWriter/Src/Font.cpp
Alexander.Trofimov 01a3fd5efc to utf8
2016-06-23 16:47:17 +03:00

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()
{
}
}