mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
16 lines
268 B
C++
16 lines
268 B
C++
#include "Brush.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CBrush::CBrush()
|
|
{
|
|
|
|
}
|
|
|
|
bool CBrush::Read(CChartStream& oStream)
|
|
{
|
|
return m_oFillColor.Read(oStream) && oStream.ReadInteger(m_nIndex) &&
|
|
m_oPatternColor.Read(oStream) && oStream.ReadInteger(m_nStyle);
|
|
}
|
|
}}
|