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

16 lines
267 B
C++

#include "StatLine.h"
namespace HWP { namespace CHART
{
CStatLine::CStatLine()
{
}
bool CStatLine::Read(CHWPStream& oStream)
{
return oStream.ReadInt(m_nFlags) && oStream.ReadInt(m_nStyle) &&
m_oVtColor.Read(oStream) && oStream.ReadShort(m_snWidth);
}
}}