Files
core/MsBinaryFile/PptFile/Records/SoundCollAtom.cpp
2022-12-10 11:47:59 +03:00

19 lines
325 B
C++

#include "SoundCollAtom.h"
using namespace PPT;
CRecordSoundCollAtom::CRecordSoundCollAtom()
{
}
CRecordSoundCollAtom::~CRecordSoundCollAtom()
{
}
void CRecordSoundCollAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
{
m_oHeader = oHeader;
m_nObjectIdSeed = StreamUtils::ReadDWORD(pStream);
}