mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 23:31:38 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@61935 954022d7-b5bf-4e40-9824-e11837661b57
26 lines
479 B
C++
26 lines
479 B
C++
#pragma once
|
|
#include "../Reader/Records.h"
|
|
|
|
class CRecordMouseTextInteractiveInfoAtom : public CUnknownRecord
|
|
{
|
|
STextRange m_oRange;
|
|
|
|
public:
|
|
|
|
CRecordMouseTextInteractiveInfoAtom()
|
|
{
|
|
}
|
|
|
|
~CRecordMouseTextInteractiveInfoAtom()
|
|
{
|
|
}
|
|
|
|
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
|
{
|
|
return CUnknownRecord::ReadFromStream(oHeader, pStream);
|
|
}
|
|
virtual CString ToString()
|
|
{
|
|
return CUnknownRecord::ToString();
|
|
}
|
|
}; |