mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
18 lines
342 B
C++
18 lines
342 B
C++
#include "TextCharsAtom.h"
|
|
|
|
using namespace PPT;
|
|
|
|
CRecordTextCharsAtom::CRecordTextCharsAtom()
|
|
{
|
|
}
|
|
|
|
CRecordTextCharsAtom::~CRecordTextCharsAtom()
|
|
{
|
|
}
|
|
|
|
void CRecordTextCharsAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
m_strText = StreamUtils::ReadStringW(pStream, m_oHeader.RecLen / 2);
|
|
}
|