mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
31 lines
831 B
C++
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);
|
|
}
|
|
}
|