mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 03:46:15 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62097 954022d7-b5bf-4e40-9824-e11837661b57
24 lines
488 B
C++
24 lines
488 B
C++
#pragma once
|
|
|
|
#include "OOXrPrReader.h"
|
|
#include "OOXShapeReader.h"
|
|
#include "OOXPictureReader.h"
|
|
|
|
#include "../RtfDocument.h"
|
|
#include "../RtfProperty.h"
|
|
#include "../RtfField.h"
|
|
#include "../RtfBookmark.h"
|
|
#include "../RtfOle.h"
|
|
|
|
class OOXRunReader
|
|
{
|
|
private:
|
|
OOX::Logic::CRun *m_ooxRun;
|
|
public:
|
|
OOXRunReader(OOX::Logic::CRun *ooxRun)
|
|
{
|
|
m_ooxRun = ooxRun;
|
|
}
|
|
|
|
bool Parse( ReaderParameter oParam , RtfParagraph& oOutputParagraph, RtfStylePtr poStyle );
|
|
}; |