mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 07:41:12 +08:00
Added .cpp files for all records
This commit is contained in:
20
MsBinaryFile/PptFile/Records/TextInteractiveInfoAtom.cpp
Normal file
20
MsBinaryFile/PptFile/Records/TextInteractiveInfoAtom.cpp
Normal file
@ -0,0 +1,20 @@
|
||||
#include "TextInteractiveInfoAtom.h"
|
||||
|
||||
|
||||
CRecordTextInteractiveInfoAtom::CRecordTextInteractiveInfoAtom()
|
||||
{
|
||||
m_lStart = 0;
|
||||
m_lEnd = 0;
|
||||
}
|
||||
|
||||
CRecordTextInteractiveInfoAtom::~CRecordTextInteractiveInfoAtom()
|
||||
{
|
||||
}
|
||||
|
||||
void CRecordTextInteractiveInfoAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
||||
{
|
||||
m_oHeader = oHeader;
|
||||
|
||||
m_lStart = StreamUtils::ReadLONG(pStream);
|
||||
m_lEnd = StreamUtils::ReadLONG(pStream);
|
||||
}
|
||||
Reference in New Issue
Block a user