Files
core/HwpFile/HwpDoc/Paragraph/CellParagraph.cpp
2025-07-06 22:53:38 +03:00

19 lines
291 B
C++

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