mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
19 lines
307 B
C++
19 lines
307 B
C++
#include "CellParagraph.h"
|
|
|
|
namespace HWP
|
|
{
|
|
CCellParagraph::CCellParagraph()
|
|
: CHWPPargraph()
|
|
{
|
|
}
|
|
|
|
CCellParagraph::CCellParagraph(CXMLReader& oReader, int nVersion)
|
|
: CHWPPargraph(oReader, nVersion, EHanType::HWPX)
|
|
{}
|
|
|
|
EParagraphType CCellParagraph::GetType() const
|
|
{
|
|
return EParagraphType::Cell;
|
|
}
|
|
}
|