mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 01:52:24 +08:00
11 lines
297 B
C++
11 lines
297 B
C++
#include "SmallRectStruct.h"
|
|
|
|
|
|
void PPT_FORMAT::SmallRectStruct::ReadFromStream(POLE::Stream *pStream)
|
|
{
|
|
m_nTop = StreamUtils::ReadSHORT(pStream);
|
|
m_nLeft = StreamUtils::ReadSHORT(pStream);
|
|
m_nRight = StreamUtils::ReadSHORT(pStream);
|
|
m_nBottom = StreamUtils::ReadSHORT(pStream);
|
|
}
|