mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 01:52:24 +08:00
9 lines
183 B
C++
9 lines
183 B
C++
#include "PointStruct.h"
|
|
|
|
|
|
void PPT_FORMAT::PointStruct::ReadFromStream(POLE::Stream *pStream)
|
|
{
|
|
m_x = StreamUtils::ReadLONG(pStream);
|
|
m_y = StreamUtils::ReadLONG(pStream);
|
|
}
|