Files
core/HwpFile/HwpDoc/Paragraph/CellParagraph.cpp
2025-09-24 18:47:24 +03:00

18 lines
289 B
C++

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