Files
core/MsBinaryFile/PptFile/Structures/SmallRectStruct.cpp
2022-11-28 17:37:12 +03:00

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);
}