mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-15 22:57:23 +08:00
20 lines
289 B
C++
20 lines
289 B
C++
#ifndef WEIGHTING_H
|
|
#define WEIGHTING_H
|
|
|
|
#include "ChartObject.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CWeighting : public IChartObject
|
|
{
|
|
CHART_INTEGER m_nBasis;
|
|
CHART_INTEGER m_nStyle;
|
|
public:
|
|
CWeighting();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // WEIGHTING_H
|