Files
core/ASCOfficeRtfFile/RtfFormatLib/source/Reader/OOXpPrFrameReader.h
Elen.Subbotina c026e2b9a4 codepage utf8
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@62097 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 23:57:32 +03:00

18 lines
429 B
C++

#pragma once
#include "OOXReaderBasic.h"
#include "../RtfProperty.h"
#include "../../../../Common/DocxFormat/Source/DocxFormat/Logic/ParagraphProperty.h"
class OOXpPrFrameReader
{
private:
ComplexTypes::Word::CFramePr *m_ooxFramePr;
public:
OOXpPrFrameReader(ComplexTypes::Word::CFramePr *ooxFramePr)
{
m_ooxFramePr = ooxFramePr;
}
bool Parse( ReaderParameter oParam ,RtfFrame& oOutputProperty);
};