mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 03:42:47 +08:00
19 lines
260 B
C++
19 lines
260 B
C++
#ifndef CONTOUR_H
|
|
#define CONTOUR_H
|
|
|
|
#include "ChartObject.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CContour : public IChartObject
|
|
{
|
|
CHART_INTEGER m_nDisplayType;
|
|
public:
|
|
CContour();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // CONTOUR_H
|