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

9 lines
187 B
C++

#include "RatioStruct.h"
void PPT::RatioStruct::ReadFromStream(POLE::Stream *pStream)
{
m_nNumber = StreamUtils::ReadLONG(pStream);
m_nDenom = StreamUtils::ReadLONG(pStream);
}