mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-14 13:50:25 +08:00
20 lines
277 B
C++
20 lines
277 B
C++
#ifndef PIE_H
|
|
#define PIE_H
|
|
|
|
#include "ChartObject.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CPie : public IChartObject
|
|
{
|
|
CHART_SINGLE m_snThicknessRatio;
|
|
CHART_SINGLE m_snTopRadiusRatio;
|
|
public:
|
|
CPie();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // PIE_H
|