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