mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 08:39:50 +08:00
23 lines
343 B
C++
23 lines
343 B
C++
#ifndef INTERSECTION_H
|
|
#define INTERSECTION_H
|
|
|
|
#include "ChartObject.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CIntersection : public IChartObject
|
|
{
|
|
bool m_bAuto;
|
|
int m_nAxisId;
|
|
int m_nIndex;
|
|
bool m_bLabelsInsidePlot;
|
|
double m_dPoint;
|
|
public:
|
|
CIntersection();
|
|
|
|
bool Read(CHWPStream& oStream) override;
|
|
};
|
|
}}
|
|
|
|
#endif // INTERSECTION_H
|