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