mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-21 02:22:41 +08:00
24 lines
437 B
C++
24 lines
437 B
C++
#pragma once
|
|
#include "..\Reader\Records.h"
|
|
|
|
class CRecordSoundCollectionContainer : public CRecordsContainer
|
|
{
|
|
public:
|
|
|
|
CRecordSoundCollectionContainer()
|
|
{
|
|
}
|
|
|
|
~CRecordSoundCollectionContainer()
|
|
{
|
|
}
|
|
|
|
virtual void ReadFromStream(SRecordHeader oHeader, IStream* pStream)
|
|
{
|
|
CRecordsContainer::ReadFromStream(oHeader, pStream);
|
|
}
|
|
virtual CString ToString()
|
|
{
|
|
return CRecordsContainer::ToString();
|
|
}
|
|
}; |