mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
16 lines
491 B
C++
16 lines
491 B
C++
#include "BuildAtom.h"
|
|
|
|
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);
|
|
}
|