Files
core/HwpFile/HwpDoc/Chart/Fill.cpp
2025-12-25 03:36:19 +03:00

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);
}
}}