mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
18 lines
424 B
C++
18 lines
424 B
C++
#include "DateScale.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CDateScale::CDateScale()
|
|
{
|
|
|
|
}
|
|
|
|
bool CDateScale::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadBool(m_bAuto) && oStream.ReadInt(m_nMajFreq) &&
|
|
oStream.ReadInt(m_nMajInt) && oStream.ReadDouble(m_dMaximum) &&
|
|
oStream.ReadDouble(m_dMinimum) && oStream.ReadInt(m_nMinFreq) &&
|
|
oStream.ReadInt(m_nMinInt) && oStream.ReadBool(m_bSkipWeekend);
|
|
}
|
|
}}
|