mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
20 lines
262 B
C++
20 lines
262 B
C++
#ifndef BAR_H
|
|
#define BAR_H
|
|
|
|
#include "ChartObject.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CBar : public IChartObject
|
|
{
|
|
CHART_INTEGER m_nSides;
|
|
CHART_SINGLE m_snTopRatio;
|
|
public:
|
|
CBar();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // BAR_H
|