mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:07:28 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62097 954022d7-b5bf-4e40-9824-e11837661b57
16 lines
391 B
C++
16 lines
391 B
C++
#pragma once
|
|
#include "OOXReaderBasic.h"
|
|
#include "OOXHeaderReader.h"
|
|
|
|
class OOXSectionPropertyReader
|
|
{
|
|
private:
|
|
OOX::Logic::CSectionProperty *m_ooxSectionProperty;
|
|
public:
|
|
OOXSectionPropertyReader(OOX::Logic::CSectionProperty *ooxSectionProperty)
|
|
{
|
|
m_ooxSectionProperty = ooxSectionProperty;
|
|
}
|
|
bool Parse( ReaderParameter oParam , RtfSectionProperty& oOutput);
|
|
};
|