mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
16 lines
288 B
C++
16 lines
288 B
C++
#include "XYZ.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CXYZ::CXYZ()
|
|
{
|
|
|
|
}
|
|
|
|
bool CXYZ::Read(CChartStream& oStream)
|
|
{
|
|
return oStream.ReadBoolean(m_bAutomatic) && oStream.ReadDouble(m_dxIntersection) &&
|
|
oStream.ReadDouble(m_dyIntersection) && oStream.ReadDouble(m_dzIntersection);
|
|
}
|
|
}}
|