mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 02:37:46 +08:00
20 lines
349 B
C++
20 lines
349 B
C++
#include "DiagramBuildAtom.h"
|
|
|
|
|
|
CRecordDiagramBuildAtom::CRecordDiagramBuildAtom()
|
|
{
|
|
|
|
}
|
|
|
|
CRecordDiagramBuildAtom::~CRecordDiagramBuildAtom()
|
|
{
|
|
|
|
}
|
|
|
|
void CRecordDiagramBuildAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
|
|
{
|
|
m_oHeader = oHeader;
|
|
|
|
m_oDiagramBuild = (DiagramBuildEnum)StreamUtils::ReadDWORD(pStream);
|
|
}
|