Files
core/HwpFile/HwpDoc/Chart/Legend.cpp
2025-12-25 03:36:19 +03:00

16 lines
257 B
C++

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