Added .cpp files for all records

This commit is contained in:
Ivan Morozov
2022-11-28 17:37:12 +03:00
parent 810f7dc592
commit adfdac39ef
376 changed files with 6808 additions and 6002 deletions

View File

@ -0,0 +1,14 @@
#include "VisualShapeChartElementAtom.h"
void CRecordVisualShapeChartElementAtom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
{
m_oHeader = oHeader;
m_eType = (TimeVisualElementEnum)StreamUtils::ReadDWORD(pStream);
m_eRefType = (ElementTypeEnum)StreamUtils::ReadDWORD(pStream);
m_nShapeIdRef = StreamUtils::ReadDWORD(pStream);
m_nData1 = StreamUtils::ReadDWORD(pStream);
m_nData2 = StreamUtils::ReadDWORD(pStream);
}