mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 07:23:34 +08:00
17 lines
349 B
C++
17 lines
349 B
C++
#include "ValueScale.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CValueScale::CValueScale()
|
|
{
|
|
|
|
}
|
|
|
|
bool CValueScale::Read(CChartStream& oStream)
|
|
{
|
|
return oStream.ReadBoolean(m_bAuto) && oStream.ReadInteger(m_nMajorDivision) &&
|
|
oStream.ReadDouble(m_dMaximum) && oStream.ReadDouble(m_dMinimum) &&
|
|
oStream.ReadInteger(m_nMinorDivision);
|
|
}
|
|
}}
|