Files
core/MsBinaryFile/PptFile/Structures/SmallRectStruct.cpp
2022-12-09 18:01:24 +03:00

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