mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-10 23:03:14 +08:00
30 lines
703 B
C++
30 lines
703 B
C++
|
|
#include "RtfDocument.h"
|
|
#include "RtfReader.h"
|
|
|
|
#include "Writer/OOXNumberingWriter.h"
|
|
#include "Writer/OOXFontTableWriter.h"
|
|
#include "Writer/OOXStylesWriter.h"
|
|
#include "Writer/OOXSettingsWriter.h"
|
|
#include "Writer/OOXFootnoteWriter.h"
|
|
|
|
RtfDocument::RtfDocument()
|
|
{
|
|
m_aArray.push_back( RtfSectionPtr( new RtfSection() ) );
|
|
m_oProperty.SetDefaultOOX();
|
|
m_oDefaultCharProp.SetDefaultRtf();
|
|
m_oDefaultParagraphProp.SetDefaultRtf();
|
|
}
|
|
int RtfDocument::GetType()
|
|
{
|
|
return TYPE_RTF_DOCUMENT;
|
|
}
|
|
|
|
CString RtfDocument::RenderToRtf(RenderParameter oRenderParameter)
|
|
{
|
|
return _T("");
|
|
}
|
|
CString RtfDocument::RenderToOOX(RenderParameter oRenderParameter)
|
|
{
|
|
return _T("");
|
|
} |