mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-20 22:14:52 +08:00
17 lines
334 B
C++
17 lines
334 B
C++
#include "Intersection.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CIntersection::CIntersection()
|
|
{
|
|
|
|
}
|
|
|
|
bool CIntersection::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadBool(m_bAuto) && oStream.ReadInt(m_nAxisId) &&
|
|
oStream.ReadInt(m_nIndex) && oStream.ReadBool(m_bLabelsInsidePlot) &&
|
|
oStream.ReadDouble(m_dPoint);
|
|
}
|
|
}}
|