mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 10:07:28 +08:00
18 lines
513 B
C++
18 lines
513 B
C++
#include "BuildAtom.h"
|
|
|
|
using namespace PPT;
|
|
|
|
void CRecordBuildAtom::ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
m_BuildType = (BuildTypeEnum)StreamUtils::ReadDWORD(pStream);
|
|
m_BuildId = StreamUtils::ReadDWORD(pStream);
|
|
m_ShapeIdRef = StreamUtils::ReadDWORD(pStream);
|
|
|
|
m_fExpanded = StreamUtils::ReadBYTE(pStream);
|
|
m_fUIExpanded = StreamUtils::ReadBYTE(pStream);
|
|
|
|
StreamUtils::StreamSkip(2, pStream);
|
|
}
|