mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 13:50:25 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@67800 954022d7-b5bf-4e40-9824-e11837661b57
30 lines
886 B
C++
30 lines
886 B
C++
#pragma once
|
|
#include "OOXRunReader.h"
|
|
#include "OOXpPrReader.h"
|
|
#include "OOXMathReader.h"
|
|
|
|
#include "../RtfDocument.h"
|
|
#include "../RtfField.h"
|
|
|
|
class OOXParagraphReader
|
|
{
|
|
private:
|
|
//OOXRunReader m_oRunReader; //????
|
|
OOX::Logic::CParagraph *m_ooxParagraph;
|
|
OOX::WritingElementWithChilds<OOX::WritingElement> *m_ooxElement;
|
|
public:
|
|
|
|
OOXParagraphReader (OOX::Logic::CParagraph *ooxParagraph)
|
|
{
|
|
m_ooxElement = NULL;
|
|
m_ooxParagraph = ooxParagraph;
|
|
}
|
|
OOXParagraphReader (OOX::WritingElementWithChilds<OOX::WritingElement> *ooxElement)
|
|
{
|
|
m_ooxParagraph = NULL;
|
|
m_ooxElement = ooxElement;
|
|
}
|
|
bool Parse( ReaderParameter oParam , RtfParagraph& oOutputParagraph, CcnfStyle oConditionalTableStyle);
|
|
bool Parse2( ReaderParameter oParam , RtfParagraph& oOutputParagraph, CcnfStyle oConditionalTableStyle, RtfStylePtr poStyle);
|
|
};
|