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

15 lines
203 B
C++

#include "Pie.h"
namespace HWP { namespace CHART
{
CPie::CPie()
{
}
bool CPie::Read(CHWPStream& oStream)
{
return oStream.ReadShort(m_snThicknessRatio) && oStream.ReadShort(m_snTopRadiusRatio);
}
}}