Files
core/MsBinaryFile/PptFile/Records/LinkedShape10Atom.cpp
2022-12-10 11:47:59 +03:00

12 lines
301 B
C++

#include "LinkedShape10Atom.h"
using namespace PPT;
void CRecordLinkedShape10Atom::ReadFromStream(SRecordHeader &oHeader, POLE::Stream *pStream)
{
m_oHeader = oHeader;
m_nShapeIdRef = StreamUtils::ReadLONG(pStream);
m_nLinkedShapeIdRef = StreamUtils::ReadLONG(pStream);
}