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

15 lines
217 B
C++

#include "Doughnut.h"
namespace HWP { namespace CHART
{
CDoughnut::CDoughnut()
{
}
bool CDoughnut::Read(CChartStream& oStream)
{
return oStream.ReadInteger(m_nSides) && oStream.ReadSingle(m_snInteriorRatio);
}
}}