Files
core/HwpFile/HwpDoc/Paragraph/CtrlShapeTextArt.cpp
2024-12-16 21:05:10 +03:00

31 lines
831 B
C++

#include "CtrlShapeTextArt.h"
namespace HWP
{
CCtrlShapeTextArt::CCtrlShapeTextArt()
{}
CCtrlShapeTextArt::CCtrlShapeTextArt(const STRING& sCtrlID)
: CCtrlGeneralShape(sCtrlID)
{}
CCtrlShapeTextArt::CCtrlShapeTextArt(const STRING& sCtrlID, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
: CCtrlGeneralShape(sCtrlID, nSize, oBuffer, nOff, nVersion)
{}
int CCtrlShapeTextArt::ParseElement(CCtrlShapeTextArt& oObj, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
// TODO:: проверить
// [HWP ambiguous] following 120bytes are unknown.
// Document doesn't mention about this at all.
return nSize;
}
int CCtrlShapeTextArt::ParseCtrl(CCtrlShapeTextArt& oObj, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
return CCtrlGeneralShape::ParseCtrl(oObj, nSize, oBuffer, nOff, nVersion);
}
}