mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
19 lines
282 B
C++
19 lines
282 B
C++
#include "CellParagraph.h"
|
|
|
|
namespace HWP
|
|
{
|
|
CCellParagraph::CCellParagraph()
|
|
: CHWPPargraph()
|
|
{
|
|
}
|
|
|
|
CCellParagraph::CCellParagraph(CXMLNode& oNode, int nVersion)
|
|
: CHWPPargraph(oNode, nVersion)
|
|
{}
|
|
|
|
EParagraphType CCellParagraph::GetType() const
|
|
{
|
|
return EParagraphType::Cell;
|
|
}
|
|
}
|