mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62097 954022d7-b5bf-4e40-9824-e11837661b57
30 lines
712 B
C++
30 lines
712 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("");
|
|
} |