Files
core/ASCOfficePPTFile/PPTFormatLib/Records/TextCFExceptionAtom.h
Elen.Subbotina 7d511bb5c6 PPTFormat
удален лишний код, фиксы ошибок

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@65494 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-21 00:40:07 +03:00

30 lines
567 B
C++

#pragma once
#include "../Reader/Records.h"
class CRecordTextCFExceptionAtom : public CUnknownRecord
{
public:
CTextCFRun_ppt m_oCFRun;
CRecordTextCFExceptionAtom()
{
}
~CRecordTextCFExceptionAtom()
{
}
virtual void 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);
}
};