mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
11 lines
290 B
C++
11 lines
290 B
C++
#include "SmallRectStruct.h"
|
|
|
|
|
|
void PPT::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);
|
|
}
|