mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
19 lines
504 B
C++
19 lines
504 B
C++
#include "Elevation.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CElevation::CElevation()
|
|
{
|
|
|
|
}
|
|
|
|
bool CElevation::Read(CChartStream& oStream)
|
|
{
|
|
return m_oAttributes.Read(oStream) && oStream.ReadBoolean(m_bAutoValues) &&
|
|
oStream.ReadInteger(m_nColorType) && oStream.ReadInteger(m_nColSmoothing) &&
|
|
m_oContour.Read(oStream) && m_oContourGradient.Read(oStream) &&
|
|
oStream.ReadInteger(m_nRowSmoothing) && oStream.ReadBoolean(m_bSeparateContourData) &&
|
|
m_oSurface.Read(oStream);
|
|
}
|
|
}}
|