mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:55:47 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@65642 954022d7-b5bf-4e40-9824-e11837661b57
31 lines
605 B
C++
31 lines
605 B
C++
#pragma once
|
|
#include "../Reader/Records.h"
|
|
|
|
class CRecordTextPFExceptionAtom : public CUnknownRecord
|
|
{
|
|
public:
|
|
CTextPFRun_ppt m_oPFRun;
|
|
|
|
CRecordTextPFExceptionAtom()
|
|
{
|
|
}
|
|
|
|
~CRecordTextPFExceptionAtom()
|
|
{
|
|
}
|
|
|
|
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
LONG lPosition = 0;
|
|
StreamUtils::StreamPosition(lPosition, pStream);
|
|
|
|
m_oPFRun.LoadFromStream(pStream, false);
|
|
|
|
// ýòî íà âñÿêèé ñëó÷àé...
|
|
int current_pos = pStream->tell();
|
|
StreamUtils::StreamSeek(lPosition + m_oHeader.RecLen, pStream);
|
|
}
|
|
|
|
}; |