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