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

15 lines
221 B
C++

#include "Shadow.h"
namespace HWP { namespace CHART
{
CShadow::CShadow()
{
}
bool CShadow::Read(CChartStream& oStream)
{
return m_oBrush.Read(oStream) && m_oOffset.Read(oStream) && oStream.ReadInteger(m_nStyle);
}
}}