mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
30 lines
449 B
C++
30 lines
449 B
C++
#pragma once
|
|
|
|
#include <atlstr.h>
|
|
#include "..\..\..\..\..\Common\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;
|
|
};
|
|
} |