mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
17 lines
302 B
C++
17 lines
302 B
C++
#include "HWPRecordBinData.h"
|
|
|
|
namespace HWP
|
|
{
|
|
CHWPRecordBinData::CHWPRecordBinData(CHWPDocInfo& oDocInfo, int nTagNum, int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion)
|
|
: CHWPRecord(nTagNum, nLevel, nSize)
|
|
{
|
|
}
|
|
|
|
STRING CHWPRecordBinData::GetItemID() const
|
|
{
|
|
return m_sItemID;
|
|
}
|
|
|
|
|
|
}
|