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

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