mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
15 lines
207 B
C++
15 lines
207 B
C++
#include "Pie.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CPie::CPie()
|
|
{
|
|
|
|
}
|
|
|
|
bool CPie::Read(CChartStream& oStream)
|
|
{
|
|
return oStream.ReadSingle(m_snThicknessRatio) && oStream.ReadSingle(m_snTopRadiusRatio);
|
|
}
|
|
}}
|