mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
25 lines
546 B
C++
25 lines
546 B
C++
#include "TextCFExceptionAtom.h"
|
|
|
|
using namespace PPT;
|
|
|
|
CRecordTextCFExceptionAtom::CRecordTextCFExceptionAtom()
|
|
{
|
|
}
|
|
|
|
CRecordTextCFExceptionAtom::~CRecordTextCFExceptionAtom()
|
|
{
|
|
}
|
|
|
|
void CRecordTextCFExceptionAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
LONG lPosition = 0;
|
|
StreamUtils::StreamPosition(lPosition, pStream);
|
|
|
|
m_oCFRun.LoadFromStream(pStream, false);
|
|
|
|
// это на всякий случай...
|
|
StreamUtils::StreamSeek(lPosition + m_oHeader.RecLen, pStream);
|
|
}
|