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

16 lines
259 B
C++

#include "Legend.h"
namespace HWP { namespace CHART
{
CLegend::CLegend()
{
}
bool CLegend::Read(CChartStream& oStream)
{
return m_oBackdrop.Read(oStream) && m_oLocation.Read(oStream) &&
m_oTextLayout.Read(oStream) && m_oVtFont.Read(oStream);
}
}}