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

9 lines
194 B
C++

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