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

11 lines
283 B
C++

#include "RectStruct.h"
void PPT_FORMAT::RectStruct::ReadFromStream(POLE::Stream *pStream)
{
m_nTop = StreamUtils::ReadLONG(pStream);
m_nLeft = StreamUtils::ReadLONG(pStream);
m_nRight = StreamUtils::ReadLONG(pStream);
m_nBottom = StreamUtils::ReadLONG(pStream);
}