mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
16 lines
231 B
C++
16 lines
231 B
C++
#include "Fill.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CFill::CFill()
|
|
{
|
|
|
|
}
|
|
|
|
bool CFill::Read(CChartStream& oStream)
|
|
{
|
|
return m_oBrush.Read(oStream) && /*&&*/
|
|
oStream.ReadInteger(m_nStyle) && m_oVtPicture.Read(oStream);
|
|
}
|
|
}}
|