mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-10 23:03:14 +08:00
21 lines
437 B
C++
21 lines
437 B
C++
#include "TextInteractiveInfoAtom.h"
|
|
|
|
|
|
CRecordTextInteractiveInfoAtom::CRecordTextInteractiveInfoAtom()
|
|
{
|
|
m_lStart = 0;
|
|
m_lEnd = 0;
|
|
}
|
|
|
|
CRecordTextInteractiveInfoAtom::~CRecordTextInteractiveInfoAtom()
|
|
{
|
|
}
|
|
|
|
void CRecordTextInteractiveInfoAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
m_lStart = StreamUtils::ReadLONG(pStream);
|
|
m_lEnd = StreamUtils::ReadLONG(pStream);
|
|
}
|