Files
core/HwpFile/HwpDoc/Chart/Fill.cpp
Kirill Polyakov ebed729f13 Refactoring
2026-01-19 13:04:45 +03:00

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