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 "Shadow.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CShadow::CShadow()
|
|
{
|
|
|
|
}
|
|
|
|
bool CShadow::Read(CChartStream& oStream)
|
|
{
|
|
return m_oBrush.Read(oStream) && m_oOffset.Read(oStream) && oStream.ReadInteger(m_nStyle);
|
|
}
|
|
}}
|