Files
core/MsBinaryFile/PptFile/Records/Drawing/GroupShape.cpp
2022-11-28 17:37:12 +03:00

23 lines
450 B
C++

#include "GroupShape.h"
CRecordGroupShape::CRecordGroupShape()
{
}
CRecordGroupShape::~CRecordGroupShape()
{
}
void CRecordGroupShape::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
{
m_oHeader = oHeader;
m_oBounds.left = StreamUtils::ReadLONG(pStream);
m_oBounds.top = StreamUtils::ReadLONG(pStream);
m_oBounds.right = StreamUtils::ReadLONG(pStream);
m_oBounds.bottom = StreamUtils::ReadLONG(pStream);
}