mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
22 lines
334 B
C++
22 lines
334 B
C++
#ifndef XYZ_H
|
|
#define XYZ_H
|
|
|
|
#include "ChartObject.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CXYZ : public IChartObject
|
|
{
|
|
CHART_BOOLEAN m_bAutomatic;
|
|
CHART_DOUBLE m_dxIntersection;
|
|
CHART_DOUBLE m_dyIntersection;
|
|
CHART_DOUBLE m_dzIntersection;
|
|
public:
|
|
CXYZ();
|
|
|
|
bool Read(CChartStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // XYZ_H
|