mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
16 lines
257 B
C++
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);
|
|
}
|
|
}}
|