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