mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
15 lines
221 B
C++
15 lines
221 B
C++
#include "Backdrop.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CBackdrop::CBackdrop()
|
|
{
|
|
|
|
}
|
|
|
|
bool CBackdrop::Read(CChartStream& oStream)
|
|
{
|
|
return m_oFrame.Read(oStream) && m_oFill.Read(oStream) && m_oShadow.Read(oStream);
|
|
}
|
|
}}
|