Save/Restore CGraphicsRenderer; include CMetafile to drawing

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@63113 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
Oleg.Korshul
2015-06-17 16:17:35 +00:00
committed by Alexander Trofimov
parent 88c2be727d
commit f3f9bce6b9
7 changed files with 266 additions and 28 deletions

View File

@ -6,6 +6,11 @@ namespace Aggplus
{
}
CMatrix::CMatrix(const CMatrix& oSrc) : m_agg_mtx()
{
m_agg_mtx = oSrc.m_agg_mtx;
}
CMatrix::CMatrix() : m_agg_mtx()
{
}