Files
core/HwpFile/HwpDoc/HWPElements/HWPRecordFormObject.cpp
2024-12-03 20:12:50 +03:00

19 lines
420 B
C++

#include "HWPRecordFormObject.h"
namespace HWP
{
CHWPRecordFormObject::CHWPRecordFormObject(int nTagNum, int nLevel, int nSize)
: CHWPRecord(nTagNum, nLevel, nSize)
{
}
int CHWPRecordFormObject::ParseCtrl(CCtrlForm& oForm, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
{
oBuffer.Skip(4); // tbp+
oBuffer.Skip(4); // tbp+
oBuffer.Skip(4); // Длина строки?
oBuffer.ReadString(m_sFormStr);
}
}