mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
24 lines
532 B
C++
24 lines
532 B
C++
#include "TextSIExceptionAtom.h"
|
|
|
|
|
|
CRecordTextSIExceptionAtom::CRecordTextSIExceptionAtom()
|
|
{
|
|
}
|
|
|
|
CRecordTextSIExceptionAtom::~CRecordTextSIExceptionAtom()
|
|
{
|
|
}
|
|
|
|
void CRecordTextSIExceptionAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
LONG lPosition = 0;
|
|
StreamUtils::StreamPosition(lPosition, pStream);
|
|
|
|
NSStreamReader::Read(pStream, m_oSIRun, false);
|
|
|
|
// это на всякий случай...
|
|
StreamUtils::StreamSeek(lPosition + m_oHeader.RecLen, pStream);
|
|
}
|