mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
14 lines
373 B
C++
14 lines
373 B
C++
#include "SlideFlags10Atom.h"
|
|
|
|
using namespace PPT;
|
|
|
|
void PPT::CRecordSlideFlags10Atom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
_UINT32 data(StreamUtils::ReadLONG(pStream));
|
|
|
|
m_fPreserveMaster = ( 0x01 == ( 0x01 & ((BYTE)data) ) );
|
|
m_fOverrideMasterAnimation = ( 0x02 == ( 0x02 & ((BYTE)data) ) );
|
|
}
|