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

9 lines
176 B
C++

#include "PointStruct.h"
void PPT::PointStruct::ReadFromStream(POLE::Stream *pStream)
{
m_x = StreamUtils::ReadLONG(pStream);
m_y = StreamUtils::ReadLONG(pStream);
}