mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
17 lines
336 B
C++
17 lines
336 B
C++
#include "ValueScale.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CValueScale::CValueScale()
|
|
{
|
|
|
|
}
|
|
|
|
bool CValueScale::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadBool(m_bAuto) && oStream.ReadInt(m_nMajorDivision) &&
|
|
oStream.ReadDouble(m_dMaximum) && oStream.ReadDouble(m_dMinimum) &&
|
|
oStream.ReadInt(m_nMinorDivision);
|
|
}
|
|
}}
|