mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 02:44:13 +08:00
Added .cpp files for all records
This commit is contained in:
10
MsBinaryFile/PptFile/Structures/SmallRectStruct.cpp
Normal file
10
MsBinaryFile/PptFile/Structures/SmallRectStruct.cpp
Normal file
@ -0,0 +1,10 @@
|
||||
#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);
|
||||
}
|
||||
Reference in New Issue
Block a user