git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61916 954022d7-b5bf-4e40-9824-e11837661b57

This commit is contained in:
Elen.Subbotina
2015-04-07 13:38:31 +00:00
committed by Alexander Trofimov
parent 2c14c02d7e
commit 809065e725
470 changed files with 85885 additions and 0 deletions

View File

@ -0,0 +1,29 @@
#pragma once
#include "../../Common/DocxFormat/Source/XML/xmlutils.h"
namespace DocFileFormat
{
class AbstractOpenXmlMapping
{
public:
AbstractOpenXmlMapping (XmlUtils::CXmlWriter* pWriter) : m_pXmlWriter(pWriter)
{
}
inline XmlUtils::CXmlWriter* GetXMLWriter()
{
return m_pXmlWriter;
}
virtual ~AbstractOpenXmlMapping()
{
}
protected:
XmlUtils::CXmlWriter* m_pXmlWriter;
};
}