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