Files
core/HwpFile/HwpDoc/Chart/Footnote.cpp
Kirill Polyakov ebed729f13 Refactoring
2026-01-19 13:04:45 +03:00

17 lines
344 B
C++

#include "Footnote.h"
namespace HWP { namespace CHART
{
CFootnote::CFootnote()
{
}
bool CFootnote::Read(CChartStream& oStream)
{
return m_oBackdrop.Read(oStream) && m_oLocation.Read(oStream) &&
oStream.ReadString(m_sText) && m_oTextLayout.Read(oStream) &&
oStream.ReadInteger(m_nTextLength) && m_oVtFont.Read(oStream);
}
}}