Files
core/ASCOfficePPTFile/PPTFormatLib/Records/SoundCollectionContainer.h
Elen.Subbotina 6cab330fca .....
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61935 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-20 23:53:57 +03:00

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();
}
};