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

30 lines
580 B
C++

#ifndef ELEVATION_H
#define ELEVATION_H
#include "Attribute.h"
#include "Contour.h"
#include "ContourGradient.h"
#include "Surface.h"
namespace HWP { namespace CHART
{
class CElevation : public IChartObject
{
CAttributes m_oAttributes;
CHART_BOOLEAN m_bAutoValues;
CHART_INTEGER m_nColorType;
CHART_INTEGER m_nColSmoothing;
CContour m_oContour;
CContourGradient m_oContourGradient;
CHART_INTEGER m_nRowSmoothing;
CHART_BOOLEAN m_bSeparateContourData;
CSurface m_oSurface;
public:
CElevation();
bool Read(CChartStream& oStream) override;
};
}}
#endif // ELEVATION_H