mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
24 lines
471 B
C++
24 lines
471 B
C++
#include "GroupShape.h"
|
|
|
|
using namespace PPT;
|
|
|
|
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);
|
|
}
|