Files
core/HwpFile/HwpDoc/Chart/Contour.h
Kirill Polyakov ebed729f13 Refactoring
2026-01-19 13:04:45 +03:00

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