mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
26 lines
571 B
C++
26 lines
571 B
C++
#include "AnimationInfoContainer.h"
|
|
|
|
|
|
CRecordAnimationInfoContainer::CRecordAnimationInfoContainer()
|
|
{
|
|
|
|
}
|
|
|
|
CRecordAnimationInfoContainer::~CRecordAnimationInfoContainer()
|
|
{
|
|
|
|
}
|
|
|
|
void CRecordAnimationInfoContainer::ReadFromStream(SRecordHeader &thisHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = thisHeader;
|
|
|
|
SRecordHeader oHeader;
|
|
|
|
if (oHeader.ReadFromStream(pStream))
|
|
m_AnimationAtom.ReadFromStream ( oHeader, pStream );
|
|
|
|
if (m_oHeader.RecLen != 36 && oHeader.ReadFromStream(pStream))
|
|
m_AnimationSound.ReadFromStream ( oHeader, pStream );
|
|
}
|