mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
22 lines
458 B
C++
22 lines
458 B
C++
#include "TextInteractiveInfoAtom.h"
|
|
|
|
using namespace PPT;
|
|
|
|
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);
|
|
}
|