mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 08:22:08 +08:00
15 lines
194 B
C++
15 lines
194 B
C++
#include "Tick.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CTick::CTick()
|
|
{
|
|
|
|
}
|
|
|
|
bool CTick::Read(CChartStream& oStream)
|
|
{
|
|
return oStream.ReadSingle(m_snLength) && oStream.ReadInteger(m_nStyle);
|
|
}
|
|
}}
|