mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
10 lines
232 B
C++
10 lines
232 B
C++
#include "GuideAtom.h"
|
|
|
|
|
|
void CRecordGuideAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
m_nType = StreamUtils::ReadDWORD(pStream);
|
|
m_nPos = StreamUtils::ReadDWORD(pStream);
|
|
}
|