mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 16:18:03 +08:00
Added .cpp files for all records
This commit is contained in:
23
MsBinaryFile/PptFile/Records/TextCFExceptionAtom.cpp
Normal file
23
MsBinaryFile/PptFile/Records/TextCFExceptionAtom.cpp
Normal file
@ -0,0 +1,23 @@
|
||||
#include "TextCFExceptionAtom.h"
|
||||
|
||||
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user