Files
core/HwpFile/HwpDoc/Paragraph/CellParagraph.cpp
2025-09-18 12:42:52 +03:00

18 lines
313 B
C++

#include "CellParagraph.h"
namespace HWP
{
CCellParagraph::CCellParagraph()
: CHWPPargraph()
{}
CCellParagraph::CCellParagraph(CXMLReader& oReader, int nVersion, EHanType eType)
: CHWPPargraph(oReader, nVersion, eType)
{}
EParagraphType CCellParagraph::GetType() const
{
return EParagraphType::Cell;
}
}