Files
core/HwpFile/HwpDoc/Paragraph/CellParagraph.cpp
2025-09-10 13:59:15 +03:00

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;
}
}