mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
17 lines
344 B
C++
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);
|
|
}
|
|
}}
|