mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-16 00:59:02 +08:00
удален лишний код, фиксы ошибок git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@65494 954022d7-b5bf-4e40-9824-e11837661b57
25 lines
391 B
C++
25 lines
391 B
C++
#pragma once
|
|
#include "../Reader/Records.h"
|
|
|
|
class CRecordCString : public CUnknownRecord
|
|
{
|
|
public:
|
|
std::wstring m_strText;
|
|
|
|
public:
|
|
|
|
CRecordCString()
|
|
{
|
|
}
|
|
|
|
~CRecordCString()
|
|
{
|
|
}
|
|
|
|
virtual void ReadFromStream(SRecordHeader & oHeader, POLE::Stream* pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
m_strText = StreamUtils::ReadStringW(pStream, m_oHeader.RecLen / 2);
|
|
}
|
|
|
|
}; |