Files
core/HwpFile/HwpDoc/Chart/Tick.cpp
2025-12-25 03:36:19 +03:00

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);
}
}}