mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62097 954022d7-b5bf-4e40-9824-e11837661b57
17 lines
402 B
C++
17 lines
402 B
C++
#pragma once
|
|
|
|
#include "../../../../Common/DocxFormat/Source/DocxFormat/Logic/Table.h"
|
|
#include "../RtfTable.h"
|
|
|
|
class OOXTableReader
|
|
{
|
|
private:
|
|
OOX::Logic::CTbl *m_ooxTable;
|
|
public:
|
|
OOXTableReader(OOX::Logic::CTbl *ooxTable)
|
|
{
|
|
m_ooxTable = ooxTable;
|
|
}
|
|
bool Parse( ReaderParameter oParam ,RtfTable & oOutputTable );
|
|
void ApplyParagraphProperty( RtfTable& oOutputTable );
|
|
}; |