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