Files
core/HwpFile/HwpDoc/Paragraph/CellParagraph.cpp
2025-01-13 01:12:37 +03:00

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