mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 03:08:28 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61935 954022d7-b5bf-4e40-9824-e11837661b57
26 lines
434 B
C++
26 lines
434 B
C++
#pragma once
|
|
#include "../Reader/Records.h"
|
|
|
|
class CRecordSoundCollAtom : public CUnknownRecord
|
|
{
|
|
INT m_nObjectIdSeed;
|
|
|
|
public:
|
|
|
|
CRecordSoundCollAtom()
|
|
{
|
|
}
|
|
|
|
~CRecordSoundCollAtom()
|
|
{
|
|
}
|
|
|
|
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
|
{
|
|
return CUnknownRecord::ReadFromStream(oHeader, pStream);
|
|
}
|
|
virtual CString ToString()
|
|
{
|
|
return CUnknownRecord::ToString();
|
|
}
|
|
}; |