mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 05:24:10 +08:00
19 lines
252 B
C++
19 lines
252 B
C++
#ifndef INTERSECTION_H
|
|
#define INTERSECTION_H
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
class CIntersection
|
|
{
|
|
bool m_bAuto;
|
|
int m_nAxisId;
|
|
int m_nIndex;
|
|
bool m_bLabelsInsidePlot;
|
|
double m_dPoint;
|
|
public:
|
|
CIntersection();
|
|
};
|
|
}}
|
|
|
|
#endif // INTERSECTION_H
|