mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 17:42:40 +08:00
удален лишний код, фиксы ошибок git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@65494 954022d7-b5bf-4e40-9824-e11837661b57
21 lines
344 B
C++
21 lines
344 B
C++
#pragma once
|
|
#include "../Reader/Records.h"
|
|
|
|
class CRecordDocumentTextInfo : public CRecordsContainer
|
|
{
|
|
public:
|
|
|
|
CRecordDocumentTextInfo()
|
|
{
|
|
}
|
|
|
|
~CRecordDocumentTextInfo()
|
|
{
|
|
}
|
|
|
|
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
|
{
|
|
CRecordsContainer::ReadFromStream(oHeader, pStream);
|
|
}
|
|
|
|
}; |